Skip to content

Tag Archives: Go-Basics

Hello, World! is the first basic program in any programming language. Let’s write the first program in the Go Language using the following steps: First… Read More
Prerequisite: Golang Data Types Type conversion happens when we assign the value of one data type to another. Statically typed languages like C/C++, Java, provide… Read More
Prerequisite: Variables in Go Programming Language The Scope of a variable can be defined as a part of the program where a particular variable is… Read More
Prerequisite: Introduction to Go Programming Language Before, we start with the process of Installing Golang on our System. We must have first-hand knowledge of What… Read More
Data types specify the type of data that a valid Go variable can hold. In Go language, the type is divided into four categories which… Read More
A typical program uses various values that may change during its execution. For Example, a program that performs some operations on the values entered by… Read More
Keywords or Reserved words are the words in a language that are used for some internal process or represent some predefined actions. These words are… Read More
In programming languages, identifiers are used for identification purposes. Or in other words, identifiers are the user-defined name of the program components. In Go language,… Read More
Go (also referred as Golang) is a procedural and statically-typed programming language having syntax similar to C language. It provides a rich standard library, garbage… Read More
As the name CONSTANTS suggests, it means fixed. In programming languages also it is same i.e., once the value of constant is defined, it cannot… Read More
Go is a procedural programming language. It was developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched in 2009… Read More