mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 11:45:00 +03:00
14 lines
270 B
Plaintext
14 lines
270 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_field.in
|
|
*/
|
|
|
|
function main(a: field, b: field, y: bool) -> bool {
|
|
// Change to assert when == is implemented for field.
|
|
console.log("a: {}", a);
|
|
console.log("b: {}", b);
|
|
|
|
return y == true;
|
|
}
|