37. Go - Multi-dimensional Slices Get link Facebook X Pinterest Email Other Apps December 03, 2022 A table that holds another table is multi-dimensional.package mainimport "fmt"func main() { num := []int{1, 2} nump := []int{3, 4} x := [][]int{num, nump} fmt.Println(x)} Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment