mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
6 lines
103 B
Plaintext
6 lines
103 B
Plaintext
|
function main() {
|
||
|
let (a, b) = (true, false);
|
||
|
|
||
|
assert_eq!(a, true);
|
||
|
assert_eq!(b, false);
|
||
|
}
|