Data types in Golang

Hey guys in this post, we will discuss the different datatypes provided by Golang. Integer type Floating type String Boolean package main import ( "fmt" "reflect" ) func main() {…

0 Comments

Math functions in Golang

Hey guys in this post, we will discuss some of the math functions that Golang provided out of the box. The math package in Go contains entirely of many math…

0 Comments

Functions in Go Language

Hey guys in this post, we will discuss the functions and how to call functions in Golang with easy to understand examples. 1. Create a directory mkdir go-workspace 2. Move…

0 Comments

Println vs Printf vs Print in Go

Hey guys in this post, we will discuss the difference between Println(), Printf() and Print() methods with examples. 1. Create a directory mkdir go-workspace 2. Move inside the directory cd…

0 Comments