mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
12 lines
108 B
Go
12 lines
108 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
func main() {
|
|
a := int64(time.Second)
|
|
println(a)
|
|
}
|
|
|
|
// Output:
|
|
// 1000000000
|