mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 11:12:48 +03:00
12 lines
142 B
Plaintext
12 lines
142 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/add.in
|
|
*/
|
|
|
|
@program
|
|
function main(a: i128, b: i128) -> i128 {
|
|
return a ^ b;
|
|
}
|
|
|