go-tour/nil-slices.go
2020-02-04 21:44:36 -06:00

12 lines
147 B
Go

package main
import "fmt"
func main() {
var s []int
fmt.Println(s, len(s), cap(s))
if s == nil {
fmt.Println("nil!")
}
}