1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2025-01-08 11:58:02 +03:00
leo/tests/compiler/integers/i32/add.leo

10 lines
143 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
*/
function main(a: i32, b: i32, c: i32) -> bool {
return a + b == c;
}