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