go-hello-world/hello.go
2021-05-22 21:16:08 -04:00

12 lines
149 B
Go

package main
import ( "fmt"
"time"
)
func main(){
fmt.Println("Hello World!")
duration := time.Second
time.Sleep(duration)
}