1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-07 18:52:09 +03:00
leo/asg/tests/pass/boolean/true_or_false.leo

5 lines
80 B
Plaintext

function main() {
const a = true || false;
console.assert(a == true);
}