5 lines
72 B
Go
5 lines
72 B
Go
|
|
b := []byte(“hello world”)
|
||
|
|
c := b
|
||
|
|
c[0] = 'H'
|
||
|
|
fmt.Println(string(b))
|