Skip to content

Instantly share code, notes, and snippets.

@rahuldave
Created January 12, 2012 23:25
Show Gist options
  • Save rahuldave/1603782 to your computer and use it in GitHub Desktop.
Save rahuldave/1603782 to your computer and use it in GitHub Desktop.
The Hello World Example from Go
//Learning Go
package main
import "fmt"
func main() {
fmt.Print("Hello, 世界\n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment