Welcome again! After learning some Golang, my next experiment was to build APIs. So, here’s…
Category: Golang
Concurrency is when two or more tasks make progress simultaneously. It could be very tedious…
Methods GO has no Classes. However, it has Methods that can be defined on ‘types’.…
Range Range iterates over a slice. Range returns two values while iterating over a slice.…
Pointers GO has pointers as in C. A pointer holds the memory address of…
The All-purpose For loop GO has a single looping construct which is the For loop. For loop…
GO or Golang is known for its Efficiency, Concurrency and Scalability to large systems. Some…