leo/tests/compiler/input_files/program_input_constants/main_string.leo

10 lines
185 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/main_string.in
*/
function main(const a: [char; 5], y: bool) -> bool {
return y == true && a == "😭😂👍😁😘";
}