Go For Loop: One Loop To Rule Them All

Loops are an important concept in programming, and Go has several options for looping through code. Unlike other programming languages, Go only has one keyword to create a loop: for. That doesn’t mean Go has just one type of loop, though. In this article, we’ll explore four ways of looping in Go: for loops, while … Read more

How To Build And Run A Go Program

You got a taste of Go in the Go tutorial introduction and decided to continue learning; great! let’s dive in a little deeper. This tutorial helps you install Go and a decent IDE to work in. Then we’ll look at the go command and build and run Go program. We’ll also learn about packages and … Read more