Skip to content

Instantly share code, notes, and snippets.

@narenaryan
Created June 15, 2016 17:44
Show Gist options
  • Select an option

  • Save narenaryan/21d95b4f11e3b85a0ee0f21eacfa0704 to your computer and use it in GitHub Desktop.

Select an option

Save narenaryan/21d95b4f11e3b85a0ee0f21eacfa0704 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"bufio"
"os"
)
func main() {
inputreader := bufio.NewReader(os.Stdin)
input, _ := inputreader.ReadString('\n')
fmt.Print(input)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment