To create a new project: Link
Functions
func FuncName (ParamName ParamType) ReturnType
Declaring Variables
message := “Hello” 1 way of declaring (shorter)
var message string message = “Hello” 2nd way of declaring (longer)
Package
For code to be execute in an application there must be a main package declared which can be done using “package main” in beginning of file
Call Code
To call code from another module Link
Commenting
// is a comment in go
/*
Is a comment in go
*/
is not a comment in go