This commit is contained in:
2019-08-01 01:26:06 +02:00
parent feb0b8ddb5
commit 41b2d8ebc0
2 changed files with 8 additions and 2 deletions

2
go.mod
View File

@@ -1 +1 @@
module github.com/kratisto/hamster-tycoon module hamster-tycoon

View File

@@ -1,7 +1,13 @@
package main package main
import "fmt" import (
"fmt"
"math/rand"
"time"
)
func main() { func main() {
rand.Seed(time.Now().UTC().UnixNano())
fmt.Print("hello") fmt.Print("hello")
} }