leo/tests/pass/parse/mutability/const.leo

5 lines
91 B
Plaintext
Raw Normal View History

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