Go - (1) Intro

A bit about Go Any interpreted language is slower than Go because it is compiled. High execution and compilation speed. Go is faster than interpreted or VM-powered languages like Python, JS,...
0 Read More

Go - (2) Functions

Functions Syntax of function signature ⛶func funcName(arg1 dataType, arg2 dataType) returnTypeIn a case where there are more than one return type: ⛶func funcName(arg1 dataType, arg2 dataT...
0 Read More

Go - (3) Structs

Structs The data types created by the programmer. A collection of key-value pairs. All the keys in a struct don't need to be in the same data type. ⛶type Employee struct { Name string...
0 Read More