1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2025-01-07 19:37:02 +03:00
leo/compiler/tests/boolean/true_or_false.leo

5 lines
80 B
Plaintext

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