gopher-the-number/main.go

12 lines
132 B
Go
Raw Normal View History

2023-03-15 17:11:00 +01:00
package main
import (
"math/rand"
"os"
)
func main() {
random := rand.Intn(100)
LoopUntilFound(os.Stdout, os.Stdin, random)
}