github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/append0.gno (about) 1 package main 2 3 import "fmt" 4 5 func f(a []int, b int) interface{} { return append(a, b) } 6 7 func main() { 8 a := []int{1, 2} 9 r := f(a, 3) 10 fmt.Println(r.([]int)) 11 } 12 13 // Output: 14 // [1 2 3]