mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 09:02:58 +03:00
16 lines
225 B
Plaintext
16 lines
225 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- assert.in: |
|
|
[main]
|
|
a: bool = true;
|
|
|
|
[registers]
|
|
r0: bool = false;
|
|
*/
|
|
|
|
function main(a: bool) -> bool {
|
|
console.assert(a == true);
|
|
return a == true;
|
|
} |