RosettaCodeData/Task/Pointers-and-references/Go/pointers-and-references-4.go

5 lines
72 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
b := []byte(hello world)
c := b
c[0] = 'H'
fmt.Println(string(b))