mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-20 16:51:44 +03:00
11 lines
162 B
Plaintext
11 lines
162 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/add.in
|
|
*/
|
|
|
|
function main(a: i64) -> i64 {
|
|
let b: i64 = 9223372036854775807i64;
|
|
return b - a;
|
|
}
|