Core Basics
Last updated
Last updated
Every Go application needs at least one package
, that you can split your code in.
Usually you will have a default package main
. Theoretically it could be any package name, as long as all files belong to the same package.
main
is a special name for Go that tells it that this package will be the main entrypoint of the application.
In developing environments when executing the application with go run app.go
you specify which file will be the entrypoint.
But for production environments, where the code is compiled to be runned, everything will be mixed together in the binary file, so the entrypoint from the package name is important.
Compiling a project without a main
package produces no executable file.
You may also split your code into multiple packages.
Variables, constants, functions, etc, are ONLY available (exported) to other packages if they start in Uppercase
.
Ex.:
GetSomething()
: this function will be available in other packages.
getSomething()
: this function is "private" to the package that it is declared.
This downloads the package and stores globally on your system.
Just like npm install
run bellow to install the projects dependencies.
A module consist of multiple packages, and it is the go.mod
file in your project.
Initiate the module in your project, or else, you will not be able to compile your project.
The path
can be a name or dummy URL, or even a github repository URL.
Define functions with func
.
Specify names of returned variables, and Go will auto declare AND return them, when return
is called.
main()
functionThere is also the need for a main()
function to be defined. Which will be the entrypoint function by default to be executed.
There can only be ONE main()
function in your package main
.
If making a utility package there is no need for a main()
function. Because it is not intended to be executed as a program, but to be imported by other packages.
Create variables with var
or with :=
.
The convention is to declare variables with :=
and not var
.
BUT, you can't explicitly state the variable type. (Ex: a int := 5
)
All Go types come with a "null value" (not nil
) which is set in a variable if no other value is explicitly set.
For instance:
int => 0
float64 => 0.0
string => ""
bool => false
pointer => nil
Variable types can be inferred from values.
In Go you cannot mix types in calculations.
But they will all be of the same type. (You cannot specifiy the type for each one)
int
, uint
(only positives), int32
float64
string
bool
Create new types with type
keyword.
You can't easily fetch multi-word input values.
Variables or constants can be declared outside of main()
.
In this case a
will be accessable/scoped to the entire file main.go
.
But you can't declare these variables with :=
.
You may use _
as variables to handle values that will not be used.
Declare constants with const
.
If using switch
inside infinite loops, the break
keyword will not be able to be used to end the loop, since it will be used by the switch
.
In Go, error handling works a bit differently. You should write your functions in a way that errors should not crash the application.
You can exit the program ungracefully with panic()
.
Pointers are variables that store memory addresses instead of values.
Use them to directly mutate variables or to avoid memory duplication.
By default Go pass variables by value to functions.