Tutorial for learning Go functions, loops, and errors

Click for: original source

Go is a modern, open source, and general-purpose programming language that began as an internal Google project and was officially announced at the end of 2009. This guide was written by Mihalis Tsoukalos on Linode.

Although Go is not perfect, it has many advantages, including: It has support for procedural, concurrent, and distributed programming, Go supports garbage collection so you do not have to deal with memory allocation and deallocation.

In this guide author covers the following topics:

  • A quick introduction on how to execute Go code
  • How to use loops
  • How to create functions
  • How to handle errors

Excellent for anybody starting looking seriously into Golang. Nice one!

[Read More]

Tags golang programming learning