leo/tests/compiler/integers/i8/rem.leo
2022-10-03 14:56:14 -07:00

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;
}