leo/compiler/tests/input_files/program_input_constants/main_field.leo

5 lines
165 B
Plaintext
Raw Normal View History

2021-03-12 13:56:38 +03:00
function main(const a: field, const b: field) {
// Change to assert when == is implemented for field.
console.log("a: {}", a);
console.log("b: {}", b);
}