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
April 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 More
Comments Off on Composite types: Slice
November 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