go-hello-world/hello.go
2021-05-22 21:19:45 -04:00

18 lines
344 B
Go

package main
import ( "fmt"
"time"
"runtime"
)
func main(){
duration := time.Second
fmt.Println("Hello World! 0")
time.Sleep(duration)
fmt.Println("Hello World! 1")
time.Sleep(duration)
fmt.Println("Hello World! 2")
time.Sleep(duration)
fmt.Printf("Hello from: %s %s\n",runtime.GOOS,runtime.GOARCH)
}