* test: remove limit. * test: skip btln.go * test: adds tests on errors. * feat: add missing output results. * refactor: time's tests.
13 lines
179 B
Go
13 lines
179 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
// FIXME related to named returns
|
|
func main() {
|
|
t := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)
|
|
fmt.Println(t.Clock())
|
|
}
|