According to golang official github,Modules are an experimental opt-in feature in Go 1.11, with the plan of incorporating feedback and […]
Read MoreMay 21, 2019
May 10, 2019
Read a file in Golang
In this blog post, I will show you how to read a file in golang using bufio. Create a file […]
Read MoreApril 13, 2019
Structs in Golang
Struct is a collection of fields. Syntax Initializing Structs Struct can be initialized using new keyword which will initialize fields […]
Read MoreApril 4, 2019
Composite types: Slice
Slices A Slice is like a dynamically-sized array. A slice type is written []T,where elements has type T. So it’s […]
Read MoreMarch 4, 2019
Scan string/int in golang
Let’s see how to scan string and int in golang. You need to import the following packages for operating on […]
Read MoreNovember 10, 2018
Installing Goland on ubuntu/kali linux
Introduction GoLand is a new commercial IDE by JetBrains aimed at providing an ergonomic environment for Go development.The new IDE […]
Read MoreInstall Golang on ubuntu/kali linux
Introduction Go is a modern programming language developed by Google that uses high-level syntax similar to scripting languages. Go is a statically […]
Read More