Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Scan in a loop

package main

import (
	"fmt"
)

func main() {
	var word string
	for {
		fmt.Scan(&word)
		if word == "bye" {
			fmt.Println("Bye bye")
			break
		}
		fmt.Println(word)
	}
}
hello world
some more bye ls
hello
world
some
more
Bye bye