Files
moxa/_test/assign1.go

14 lines
108 B
Go

package main
import "fmt"
func main() {
var buf []byte
buf = nil
fmt.Println(buf)
}
// Output:
// []