Rudra
Rudra's blog

Rudra's blog

Follow
Follow
homeWeb securityGo learningbadgesnewsletter
Series

Go learning

I am learning the Go language and taking notes while learning in the easiest way from my side and in detail, I will just post here by Series.

Articles in this series

#01 Introduction to Golang

May 1, 20221 min read

Go language statically typed language, compiled programming language designed at Google. Infrastructure has changed a lot in years with cloud and...

#01 Introduction to Golang

#02 The Basic Structure of the Go file

May 1, 20221 min read

A go file has the following parts: Package declaration Import packages main() function Example: package main import "fmt" func main() { ...

#02 The Basic Structure of the Go file

#03 Variables & Constants

May 12, 20223 min read

Variable Variables are for storing data values. In Golang there are available data types for variables are string, int, boolean, and float32. There...

#03 Variables & Constants