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