#go-programming-language
Read more stories on Hashnode
Articles with this tag
Arrays are an essential part of Go programming. They provide a way to store multiple elements of the same type together in a fixed-size collection. In...
Introduction Pointers are a fundamental concept in programming, allowing you to directly manipulate memory addresses. In Go, pointers provide a...
Introduction Conversion is a crucial concept in any programming language, including Go. It allows you to change the type of a variable to another...
Introduction Have you ever come across a statement like this? func main() { i := "hello world" n, ok := i.(int) if ok { ...
In this part of our Go series, we'll delve into variables—a fundamental concept in any programming language. We'll cover variable declaration, types,...
History of Golang Golang, also known as Go, was created by Google engineers Robert Griesemer, Rob Pike, and Ken Thompson in 2007. The language was...