1.
hatra1
2.
hatra2
3.
string_from_print
4.
string_from_move_print
5.
func_take_ownership
6.
immutable_borrow
7.
multiple_immutable_borrow
8.
mutable_borrow
9.
nll_lexical_scope_different
10.
move_different_scope
11.
move_assignment
12.
move_func_return
13.
func_take_return_ownership
14.
immutable_borrow_method_call
15.
mutable_borrow_method_call
16.
immutable_variable
17.
mutable_variables
18.
copy
19.
function
20.
printing
21.
struct_string
22.
struct_rect
23.
struct_rect2
24.
struct_lifetime
Light (default)
Rust
Coal
Navy
Ayu
test_examples
mutable_variables
fn main() { let mut x = 5; x = 6; //OK }