go_study/bilibili/aceld/hello/hello.go
2024-11-19 12:27:49 +08:00

13 lines
113 B
Go

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Hello Go!")
time.Sleep(1 * time.Second)
}