Skip to content

Instantly share code, notes, and snippets.

@bialikover
Created October 25, 2016 23:40
Show Gist options
  • Save bialikover/ee27fcde0e8905e1ecec4aca454bb59d to your computer and use it in GitHub Desktop.
Save bialikover/ee27fcde0e8905e1ecec4aca454bb59d to your computer and use it in GitHub Desktop.
readinput go
package main
import (
"fmt"
"bufio"
"os"
)
func main() {
reader := bufio.NewReader(os.Stdin)
input, _ := reader.ReadString('\n')
fmt.Println("Hello, World.")
fmt.Println(input)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment