Go Introduction

devdrake0

Si

Posted on May 31, 2019

Go Introduction

Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.

Go Introduction

Go is a relatively new language; coming into existence in 2009 at Google. It is statically typed and it's a compiled language.

It is a backend language, which means it's used to write applications that sit in the background performing tasks that other services (e.g. websites) ask of it.

There are a lot of backend languages already out there, but a lot of developers are choosing to learn and use Go due to its simplicity and speed.

Another reason we've chosen to teach you Go is the learning curve. It's a much easier language to learn, due to its simplicity, than other backend languages.


You can download Go by going to their downloads page and clicking the appropriate box for your platform.

Go Introduction
Go download page screenshot

Once you've downloaded/installed Go you can verify your installation by running the following command:

go version
Enter fullscreen mode Exit fullscreen mode

If the command outputs a version, you'll need to install a Code Editor (we recommend Visual Studio Code) and then you're good to move on to the next articles.

If you get stuck and need some help, drop us a comment and we'll try to help you.

💖 💪 🙅 🚩
devdrake0
Si

Posted on May 31, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Two Sum
beginners Two Sum

December 28, 2019

Table Driven Tests
beginners Table Driven Tests

December 16, 2019

Structs in Go (challenge answer)
beginners Structs in Go (challenge answer)

August 21, 2019

Structs in Go
beginners Structs in Go

July 15, 2019

Functions in Go (challenge answer)
beginners Functions in Go (challenge answer)

July 15, 2019