mirror of
https://github.com/Crocmagnon/gopher-the-number.git
synced 2024-11-14 04:03:53 +01:00
11 lines
132 B
Go
11 lines
132 B
Go
package main
|
|
|
|
import (
|
|
"math/rand"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
random := rand.Intn(100)
|
|
LoopUntilFound(os.Stdout, os.Stdin, random)
|
|
}
|