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
{{ message }}
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
Declarations should be immutable by default. To make them mutable, use the mut keyword as demonstrated below. This should be statically checked and enforced by the compiler.
let x: u8 = 19;
// Errors:
//x = 90;
//decrement(x);
let mut y: u8 = 17;
// Works:
y = 90;
decrement(y);
Declarations should be immutable by default. To make them mutable, use the
mut
keyword as demonstrated below. This should be statically checked and enforced by the compiler.Started in #63.
The text was updated successfully, but these errors were encountered: