Search⌘ K
AI Features

Basic Types

Explore the fundamental built-in types in Go, including booleans, strings, numeric types, and aliases like byte and rune. Understand type ranges and conversions, enabling you to write clear and efficient Go code with proper type use.

List of Built In Types

The following are the built in types in Go:

Common Types

bool true or false
string an array of characters

Numeric types

...