leo/tests/compiler/integers/u64/xor.leo
2022-08-04 20:00:40 -07:00

10 lines
137 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
*/
@program
function main(a: u64, b: u64) -> u64 {
return a ^ b;
}