package main

import (
	"fmt"
	"time"
)

func main() {
	fmt.Println("Hello Go!")

	time.Sleep(1 * time.Second)
}