Closed glycerine closed 6 years ago
should be fairly easy, good first issue. make a slice should work. so when we write in Go
a := make([]int, 3)
This should compile and when run, allocate a _gi_NewSlice just like
a := []int{0,0,0}
would.
done by v0.7.7
should be fairly easy, good first issue. make a slice should work. so when we write in Go
This should compile and when run, allocate a _gi_NewSlice just like
would.