Skip to content

Instantly share code, notes, and snippets.

@OmisNomis
Last active March 23, 2018 09:08
Show Gist options
  • Select an option

  • Save OmisNomis/1f081c0e99247f56b28eca1163403aed to your computer and use it in GitHub Desktop.

Select an option

Save OmisNomis/1f081c0e99247f56b28eca1163403aed to your computer and use it in GitHub Desktop.
Go Tutorial Series
package main
import "fmt"
// The entry point for the application is the 'main' function in the 'main' package.
// The main function must take no arguments and return no values.
func main() {
fmt.Println("Hello World")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment