learning_go/spec_course/Lec10/buf/main.go
a.pivkin 0635aaa5ae kk
2025-07-16 08:15:26 +03:00

18 lines
238 B
Go

package main
import (
"bufio"
"fmt"
"os"
)
func main() {
var name string
input := bufio.NewScanner(os.Stdin)
if input.Scan() { //Capture input and save into buffer. Captures until \n
name = input.Text()
}
fmt.Println(name)
}