Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 226 Bytes

GoGotcha2_String.mdown

File metadata and controls

9 lines (5 loc) · 226 Bytes

Go Gotcha #2: string does not behave the way you might expect

Quick, what does this print?

fmt.Println(string(65))

http://play.golang.org/p/CZvTvIUPFC

If you said 65, you're wrong. It's understandable you'd think that.