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