Created
June 19, 2012 03:50
-
-
Save jafstar/2952212 to your computer and use it in GitHub Desktop.
Go - Hello World
This file contains 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
//https://groups.google.com/forum/?fromgroups#!topic/golang-nuts/S9AO_kHktiY | |
package main | |
import ( | |
"fmt" | |
"os" | |
"bufio" | |
) | |
func main() { | |
fmt.Println("Hello World") | |
reader := bufio.NewReader(os.Stdin) | |
reader.ReadString('\n') | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment