12 lines
119 B
Go
Raw Permalink Normal View History

2021-12-05 00:41:44 +08:00
package main
import (
"fmt"
2021-12-05 01:29:45 +08:00
"time"
2021-12-05 00:41:44 +08:00
)
func main() {
fmt.Println("hello world")
2021-12-05 01:29:45 +08:00
fmt.Println("Time:", time.Now())
2021-12-05 00:41:44 +08:00
}