leo/tests/compiler/integers/u32/add.leo

12 lines
183 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
2021-05-10 21:11:31 +03:00
*/
2022-10-06 02:53:49 +03:00
program test.aleo {
transition main(a: u32, b: u32, c: u32) -> bool {
return a + b == c;
}
2021-05-10 21:11:31 +03:00
}