Searching for: String Variables in Go
Type Converstion
Language: Go

Type conversion is used to convert an object or variable of one type into another. Also known as typecast or type casting in other languages.

Constants
Language: Go

A constant expression is a variable which cannot have its value changed after declaration. These expressions are evaluated at compile time.

Slices
Language: Go

Slices are used to store multiple sequenced values in one variable, similar to arrays. Unlike arrays, slices can be dynamically sized.

Pointers
Language: Go

A pointer is a variable used to store a memory address.


< Previous Page   |   Next Page >