mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
12 lines
242 B
Plaintext
12 lines
242 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_field.in
|
|
*/
|
|
|
|
function main(const a: field, const b: field) {
|
|
// Change to assert when == is implemented for field.
|
|
console.log("a: {}", a);
|
|
console.log("b: {}", b);
|
|
}
|