Mark McGranaghan ebec3473f2 state mutex
2012-10-01 07:58:21 -07:00

13 lines
197 B
Go

// ## Bytes
package main
import "fmt"
func main() {
arr := []byte("some bytes")
str := string([]byte{'a', ' ', 's', 't', 'r', 'i', 'n', 'g'})
fmt.Println(arr)
fmt.Println(str)
}