Welcome To Golang By Example

Menu
  • Home
  • Blog
  • Contact Us
  • Support this website
Menu

Tag: golang

Interface Comparison in Go (Golang)

Posted on July 18, 2020July 18, 2020 by admin

For understanding whether two interface variables are equal or not, we first need to understand the internal representation of an interface. Like any other variable, an interface variable is represented by a…

Basic HTTP Server Implementation Using Go (Golang)

Posted on July 15, 2020July 10, 2021 by admin

Overview HTTP (Hypertext Transfer Protocol) is an application layer protocol and works in client-server mode. HTTP server is basically a program running on a machine. It listens and responds to HTTP requests…

Pass an Interface as an argument to a function in Go (Golang)

Posted on July 11, 2020July 11, 2020 by admin

A function can accept an argument of an interface type. That interface type can be either Regular Interface Empty Interface Let’s see example for both of them one by one Regular Interface…

Understanding := symbol or short variable declaration in Go (Golang)

Posted on June 21, 2020June 21, 2020 by admin

Go provides another way of declaring variables which is using the := operator. When := operator is used both var keyword and type info can be omitted. Below is the format for…

Scope of a variable in Go (Golang)

Posted on June 21, 2020June 21, 2020 by admin

Scope of a Variable (Local and Global Variable) A variable declaration can be done at the package level or a function level or a block level. The scope of a variable defines…

Understanding var keyword in Go (Golang)

Posted on June 21, 2020June 21, 2020 by admin

var keyword is a reserved keyword in golang which is used to declare variables in go .variables are declared using the var keyword but there are other ways of declaring a variable…

Fallthrough keyword in Switch Statement in Go (Golang)

Posted on June 21, 2020June 21, 2020 by admin

fallthrough keyword is used in switch statement in golang. This keyword is used in switch case block. If the fallthrough keyword is present in the case block, then it will transfer control…

Create/Initialize/Declare map in Go (Golang)

Posted on June 20, 2020June 20, 2020 by admin

Overview Maps are golang builtin datatype similar to the hash table which maps a key to a value. Below is the format for a map: Both key_type and value_type can be of…

Format specifier for boolean or print boolean in Go (Golang)

Posted on June 20, 2020June 20, 2020 by admin

Different format specifiers can be used to print a boolean in either bool or string. %t can be used to print in the boolean form %v will print the default string. “true”…

Allowed key and value types for a map in Go (Golang)

Posted on June 20, 2020June 20, 2020 by admin

Maps are golang builtin datatype similar to the hash table which maps a key to a value. . Below is the format for a map: Both key_type and value_type can be of…

Posts pagination

Previous 1 … 29 30 31 … 41 Next
Follow @golangbyexample

Popular Articles

Golang Comprehensive Tutorial Series

All Design Patterns in Go (Golang)

Slice in golang

Variables in Go (Golang) – Complete Guide

OOP: Inheritance in GOLANG complete guide

Using Context Package in GO (Golang) – Complete Guide

All data types in Golang with examples

Understanding time and date in Go (Golang) – Complete Guide

©2025 Welcome To Golang By Example | Design: Newspaperly WordPress Theme