1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-08 19:19:23 +03:00
leo/asg/tests/pass/boolean/true_or_false.leo
2021-01-25 07:19:38 -08:00

5 lines
78 B
Plaintext

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