* test: remove limit. * test: skip btln.go * test: adds tests on errors. * feat: add missing output results. * refactor: time's tests.
11 lines
83 B
Go
11 lines
83 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println(true)
|
|
}
|
|
|
|
// Output:
|
|
// true
|