mirror of
https://github.com/ProvableHQ/leo.git
synced 2025-01-01 22:54:55 +03:00
11 lines
235 B
Plaintext
11 lines
235 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/add.in
|
|
*/
|
|
|
|
function main(a: i128) -> i128 {
|
|
let b: i128 = -170141183460469231731687303715884105727i128;
|
|
return b - a; // -170141183460469231731687303715884105728i128
|
|
}
|