go_study/hello/hello.go
2024-01-08 15:32:45 +08:00

16 lines
170 B
Go

package main
import (
"fmt"
"time"
"rsc.io/quote"
)
func main() {
fmt.Println("Hello, World!")
fmt.Println(quote.Go())
fmt.Println("The time is", time.Now())
}