Searching for: String Variables in Go
Referencing
Language: Go

Referencing is used to get the memory address of any variable.

Switch Case
Language: Go

A switch case is used test variable equality for a list of values, where each value is a case. When the variable is equal to one of the cases, the statements following the case are executed.

Print
Language: Go

Used to output text directly to the console.

Maps
Language: Go

Maps are used to store key-value pairs.


< Previous Page   |   Next Page >