Skip to content

Instantly share code, notes, and snippets.

@rchaganti
Last active August 4, 2020 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rchaganti/023b2d3ad10b4c53e997d58387d1ee2d to your computer and use it in GitHub Desktop.
Save rchaganti/023b2d3ad10b4c53e997d58387d1ee2d to your computer and use it in GitHub Desktop.
Hello World in Go Language
package main
/*
all imports are specified right after package declaration
*/
import "fmt"
// main function is the entry point
func main() {
fmt.Println("Hello World, let us Get Set GO!") //this is a print statement
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment