Welcome To Golang By Example

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

Category: Tech

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…

Hello World in Go (Golang)

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

Let’s see how to write a simple Hello World program in golang. Create a file with an extension .go. Let’s name this file helloworld.go. Below will be the contents of the file. Some…

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…

Naming conventions for variables and constant in Go (Golang)

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

Below are naming conventions for variables and constant in golang A variable or constant name can only start with a letter or an underscore. It can be followed by any number of…

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”…

Posts pagination

Previous 1 … 36 37 38 … 62 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