3.1. Variables and Mutability

const vs let

shadowing

3.2. Data Types

default numerics

char

tuple

array

let a: [T; N] = [x1, x2, ..., xn];

T is the element type, N is the number of elements.

3.5. Control Flow

if expressions