Tour of Rust Table of Contents

Basic Types

Rust has a variety of familiar types:

Text might be more complex than you are used to in other languages; since Rust is a system programming language, it cares about memory issues you might not be used to. We will be going into this in detail later.

Numeric types can be explicitly specified by appending the type to the end of the number (e.g. 13u32, 2u8).