IO - Standard streams (stdin, stdout, stderr) in Go
// Scanner reads input and breaks it into lines or words;
// The split function defaults to ScanLines.
input := bufio.NewScanner(os.Stdin)
for input.Scan() {
fmt.Println(input.Text())
}
'
stdout is a file that is printed immediately to the screen by the console.
// See all fmt.print function
fmt.Println("Bouh")