Go with Examples
Introduction: Hello World, values, and variables
Go code layouts A Go project is also called a module. A module is just a collection of packages....
If/else
If/else If else is very similar to C except you just take out the parenthesis. func main() { ...
Switch Statement
Switch Statement Switch in Go is pretty nice, it function similar to the switch statement in C b...
Arry and Slices
Array An array can be declared with the following syntax: var <arr_name> [length]type For exam...
Loops and range
For loops The only looping construct in Go is the for loop. There is no while loop, but it is ac...
Functions
Functions To write a function you would need to use the func keyword, provide the name of the fu...