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