Skip to content

Instantly share code, notes, and snippets.

@jafstar
Created June 19, 2012 03:50
Show Gist options
  • Save jafstar/2952212 to your computer and use it in GitHub Desktop.
Save jafstar/2952212 to your computer and use it in GitHub Desktop.
Go - Hello World
//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