Files
hamster-tycoon/main.go
2019-08-01 01:26:06 +02:00

14 lines
131 B
Go

package main
import (
"fmt"
"math/rand"
"time"
)
func main() {
rand.Seed(time.Now().UTC().UnixNano())
fmt.Print("hello")
}