package main import ( "fmt" "strings" ) func main() { var herp []byte herp = string.Bytes("\u0100") fmt.Println(herp) }
Standard input is empty
prog.go:5: imported and not used: strings prog.go:10: (string).Bytes undefined (type string has no field Bytes)
Standard output is empty