Golang
From Sigmon
Go programming language cheat sheet
References
- effective go http://golang.org/doc/effective_go.html
- tour http://tour.golang.org/#26
Maps
sexstr := map[string] int { "M" : M, "F" : F }
Go's basic types are
bool string int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 uintptr float32 float64 complex64 complex128