* test: remove limit. * test: skip btln.go * test: adds tests on errors. * feat: add missing output results. * refactor: time's tests.
14 lines
142 B
Go
14 lines
142 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
const size = 12
|
|
|
|
func main() {
|
|
var buf [size]int
|
|
fmt.Println(buf[:])
|
|
}
|
|
|
|
// Output:
|
|
// [0 0 0 0 0 0 0 0 0 0 0 0]
|