346 B
346 B
Variables
Variable Names
Please refer to Names.
Immutable Values
Most variables are immutable, and cannot be reassigned.
let x := 10
Mutable Values
Mutation is supported within the scope of a function.
mut x := 10
x := 20