http://play.golang.org/p/BoZkHC8_uA
I want to convert uint8 to string but can\'t figure out how.
package main import \"fmt\" import \"strconv\
You can do it even simpler by using casting, this worked for me:
var c uint8 c = 't' fmt.Printf(string(c))