Skip to content

Instantly share code, notes, and snippets.

@obscuren
Created March 21, 2016 20:23
Show Gist options
  • Save obscuren/24e18a1441f4fc65af81 to your computer and use it in GitHub Desktop.
Save obscuren/24e18a1441f4fc65af81 to your computer and use it in GitHub Desktop.
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
input, _ := bufio.NewReader(os.Stdin).ReadString('\n')
fmt.Println(input)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment