Tagged “rust”

All posts tagged with “rust”:

8. Flow of Control

An essential part of any programming languages are ways to modify control flow if/else, for, and others.

#draft

7. Expressions

A Rust program is (mostly) made up of a series of statements.

#draft

6. Conversion

Primitive types can be converted to each other through casting.

#draft

5. Types

Rust provides several mechanisms to change or define the type of primitive and user defined types.

#draft

4. Variable Bindings

Rust provides type safety via static typing.

#draft

3. Custom Types

Rust custom data types are formed mainly through the two keywords struct(define a structure) and enum( define an enumeration)

#draft

2. Primitives

Rust provides access to a wide variety of primitives.

#draft

1. Hello World

Start with a traditional Hello World program.

#draft