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