RosettaCodeData/Task/Pointers-and-references/Go/pointers-and-references-4.go
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

4 lines
72 B
Go

b := []byte(hello world)
c := b
c[0] = 'H'
fmt.Println(string(b))