Files
hamster-tycoon/main.go
2019-09-20 01:24:50 +02:00

21 lines
218 B
Go

package main
import (
"fmt"
"math/rand"
"time"
)
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
func main() {
fmt.Print("hello")
for {
fmt.Println("Infinite Loop 1")
time.Sleep(time.Second)
}
}