diff --git a/go.mod b/go.mod index d40f394..16fbaa8 100644 --- a/go.mod +++ b/go.mod @@ -1 +1 @@ -module github.com/kratisto/hamster-tycoon +module hamster-tycoon diff --git a/main.go b/main.go index 4a4e602..608d7ac 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,13 @@ package main -import "fmt" +import ( + "fmt" + "math/rand" + "time" +) func main() { + rand.Seed(time.Now().UTC().UnixNano()) + fmt.Print("hello") }