Files
hamster-tycoon/main.go
2019-09-18 00:36:27 +02:00

13 lines
130 B
Go

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