* test: remove limit. * test: skip btln.go * test: adds tests on errors. * feat: add missing output results. * refactor: time's tests.
15 lines
146 B
Go
15 lines
146 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
//a := []int{1, 2}
|
|
a := make([]int, 2)
|
|
//a[0] = 1
|
|
//a[1] = 2
|
|
fmt.Println(a)
|
|
}
|
|
|
|
// Output:
|
|
// [0 0]
|