RosettaCodeData/Task/Pointers-and-references/Go/pointers-and-references-4.go
2023-07-01 13:44:08 -04:00

4 lines
72 B
Go

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