Created
June 15, 2016 17:44
-
-
Save narenaryan/21d95b4f11e3b85a0ee0f21eacfa0704 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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