leo/tests/compiler/input_files/program_input/main_field.leo

14 lines
270 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/main_field.in
*/
function main(a: field, b: field, y: bool) -> bool {
2021-02-12 23:20:58 +03:00
// Change to assert when == is implemented for field.
console.log("a: {}", a);
console.log("b: {}", b);
return y == true;
2021-05-05 17:35:34 +03:00
}