leo/compiler/tests/input_files/program_input_constants/main_field.leo
2021-03-12 13:56:38 +03:00

5 lines
165 B
Plaintext

function main(const a: field, const b: field) {
// Change to assert when == is implemented for field.
console.log("a: {}", a);
console.log("b: {}", b);
}