Search Results
Searching for: Functions in Go
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.
Slices
Language: Go
Slices are used to store multiple sequenced values in one variable, similar to arrays. Unlike arrays, slices can be dynamically sized.
Primitive Data Types
Language: Go
Primitive data types are the data types used when declaring variables.
< Previous Page |