Showing Posts From

Go

Strings in Go (Golang) An Introduction

Strings in Go (Golang) An Introduction

In this blog post we will talk about Strings in Go. We will see how to declare string variables and ...

Get Up to Speed with Bytes, Runes and Printf in Go (Golang)

Get Up to Speed with Bytes, Runes and Printf in Go (Golang)

In this article we will talk bout Runes and Bytes in Go (Golang). We will see how to declare variab ...

Numeric Data Types Explained in Go (Golang)

Numeric Data Types Explained in Go (Golang)

In this article, we will talk about Numeric data types in Go, including integers, decimals and comp ...

Boolean Data Type Explained in Go (Golang)

Boolean Data Type Explained in Go (Golang)

In this blog post we will talk about Boolean data type in Go. What are Boolean values, and how do w ...

Data Types in Go An Introduction (Golang)

Data Types in Go An Introduction (Golang)

In this blog post we will talk about the difference between statically vs. dynamically typed langua ...

How to Create Library and Import it Locally in Go (Golang)

How to Create Library and Import it Locally in Go (Golang)

In this post we will talk about how to use external libraries in our project and how to create a li ...

Compile Programs in Go for Multiple OS (Golang)

Compile Programs in Go for Multiple OS (Golang)

In this blog post we will talk about how to compile Go programs for multiple operating systems. Wh ...

Basic Package File Structure and go.mod File Explained in Go (Golang)

Basic Package File Structure and go.mod File Explained in Go (Golang)

In this blog post we will talk about basic package file structure and a bit of modules. In my [pre ...

Basic Structure of Go Program Explained (Golang)

Basic Structure of Go Program Explained (Golang)

In this blog post we will explain basic structure of Go program using "Hello World" example. I used ...

Setting up Go work environment on Windows, Linux and MacOS

Setting up Go work environment on Windows, Linux and MacOS

In this blog post, we will show how to set up a Go work environment on Windows, Linux and MacOS. Al ...

Variable Declaration in Go (Golang)

Variable Declaration in Go (Golang)

There are two ways of declaring variables in Go:using the var keyword using := short de ...