package main import ( "fmt" ) func main() { var nev string fmt.Print("Add meg a neved: ") fmt.Scanln(&nev) fmt.Println("Helló ", nev) }