13 lines
130 B
Go
13 lines
130 B
Go
package main
|
|
import (
|
|
"fmt"
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
rand.Seed(time.Now().UTC().UnixNano())
|
|
|
|
fmt.Print("hello")
|
|
}
|