#2articles1week
Read more stories on Hashnode
Articles with this tag
Arrays An Array is a collection/sequence of values of a single type. Arrays in Go are similar to arrays in other languages. Let's see how to declare...
A function is a group of statements that can be used repeatedly in a program. Below is a simple function definition in Go language : func helloUser()...
Basic data types in Go are:int, float,complex,string,bool. Int, Float, and complex are part of the numbers. We'll start with Integers.There are two...
Go is Open Source Programming language that is statically typed . Although it is statically typed, It's so fast that it feels like it's an...