mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
18 lines
228 B
Plaintext
18 lines
228 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- u8.in: |
|
|
[main]
|
|
a: u8 = 4;
|
|
b: u8 = 2;
|
|
c: u8 = 2;
|
|
|
|
[registers]
|
|
r0: bool = true;
|
|
*/
|
|
|
|
function main(a: u8, b: u8, c: u8) -> bool {
|
|
return a / b == c;
|
|
}
|