leo/tests/pass/parse/mutability/let.leo

5 lines
87 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
// Variables are immutable by default.
function main() {
let a = 1u32;
a = 0;
}