github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/a21.gno (about) 1 package main 2 3 import "fmt" 4 5 func main() { 6 a := []byte("hello") 7 fmt.Println(a) 8 a = append(a, '=') 9 fmt.Println(a) 10 } 11 12 // Output: 13 // [104 101 108 108 111] 14 // [104 101 108 108 111 61]