gopher-the-number/main.go

11 lines
132 B
Go

package main
import (
"math/rand"
"os"
)
func main() {
random := rand.Intn(100)
LoopUntilFound(os.Stdout, os.Stdin, random)
}