gokedex/main.go
2025-05-30 13:41:39 -06:00

22 lines
294 B
Go

package main
import (
"bufio"
"fmt"
"os"
)
const prompt = "Pokedex > "
func main() {
dexScanner := bufio.NewScanner(os.Stdin)
for {
fmt.Print(prompt)
if !dexScanner.Scan() {
break
}
command := cleanInput(dexScanner.Text())
fmt.Println("Your command was:", command[0])
}
}