mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-01 08:19:32 +03:00
12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/div.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: i128, b: i128, c: i128) -> bool {
|
|
return a / b == c;
|
|
}
|
|
}
|