mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 11:12:48 +03:00
12 lines
193 B
Plaintext
12 lines
193 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/fields.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: field, b: field, c: field) -> bool {
|
|
return a + b == c;
|
|
}}
|