go-hello-world/hello.go

12 lines
149 B
Go
Raw Normal View History

package main
2021-05-22 21:16:08 -04:00
import ( "fmt"
"time"
)
func main(){
2021-05-22 21:16:08 -04:00
fmt.Println("Hello World!")
duration := time.Second
time.Sleep(duration)
}