geekai/main_test.go

12 lines
116 B
Go

package main
import (
"fmt"
"testing"
"time"
)
func TestTime(t *testing.T) {
fmt.Println(time.Now().Unix())
}