leo/asg/tests/pass/boolean/not_mutable.leo

4 lines
59 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main () {
const b = false;
const a = !b;
2021-01-25 18:17:42 +03:00
}