You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Arrays are limited to 32 length. Vectors are preferred over Arrays.
97
97
98
+
To inspect an array use `println!("{:?}", arr);`.
99
+
98
100
## Variables
99
101
100
102
Variables are immutable in Rust, however, you can mutate them by declaring using `let mut`. Rust is strongly typed, but if it can deduce what the variable is, it will automatically create that type for you.
0 commit comments