leo/tests/compiler/input_files/program_input/main_string.leo

14 lines
296 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/main_string.in
*/
function main(a: [char; 5], y: bool) -> bool {
// Change to assert when == is implemented for field.
console.log("a: {}", a);
console.log("b: {}", b);
return y == true && a == "😭😂👍😁😘";
}