runner_test/main.go

12 lines
124 B
Go
Raw Normal View History

2023-03-29 14:45:00 +08:00
package main
2023-03-29 15:42:10 +08:00
import (
"fmt"
"time"
)
2023-03-29 14:45:00 +08:00
func main() {
2023-03-29 15:42:10 +08:00
fmt.Printf("now -> %v", time.Now())
2023-03-29 14:45:00 +08:00
fmt.Println("Hello, World!")
}