package main func myprint(a int) func main() { var v[3] int var i int v[0] = 789 v[1] = 456 v[2] = 123 myprint(v[0]) myprint(v[1]) myprint(v[2]) }