Skip to content

Instantly share code, notes, and snippets.

@ktnyt
Last active May 9, 2018 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ktnyt/a92b46d5c4a8451fd03fcffae90f27b8 to your computer and use it in GitHub Desktop.
Save ktnyt/a92b46d5c4a8451fd03fcffae90f27b8 to your computer and use it in GitHub Desktop.
package main
import (
bufio
fmt
os
)
func main() {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
line := scanner.Text()
// Do something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment