mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 08:46:38 +08:00
12 lines
116 B
Go
12 lines
116 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestTime(t *testing.T) {
|
|
fmt.Println(time.Now().Unix())
|
|
}
|