Files
moxa/_test/make2.go
2020-06-18 15:18:04 +02:00

13 lines
122 B
Go

package main
import "fmt"
func main() {
var s uint = 4
t := make([]int, s)
fmt.Println(t)
}
// Output:
// [0 0 0 0]