mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
17 lines
214 B
Plaintext
17 lines
214 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- u128_g.in: |
|
|
[main]
|
|
a: u128 = 2;
|
|
b: u128 = 2;
|
|
|
|
[registers]
|
|
r0: bool = true;
|
|
*/
|
|
|
|
function main(a: u128, b: u128) -> bool {
|
|
return a == b;
|
|
}
|