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