Skip to content

Instantly share code, notes, and snippets.

@nicksnyder
Created October 11, 2018 00:52
Show Gist options
  • Save nicksnyder/2f58d30fc7ef713fd9affe34b9cb23df to your computer and use it in GitHub Desktop.
Save nicksnyder/2f58d30fc7ef713fd9affe34b9cb23df to your computer and use it in GitHub Desktop.
Hello World in Go
package main
import "fmt"
func main() {
printHelloWorld()
}
// printHello prints "hello world" to stdout.
func printHelloWorld() {
fmt.Println("hello world")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment