mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
input_file: input/main_char.in
|
||
|
*/
|
||
|
|
||
|
function main(a: char, y: bool) -> bool {
|
||
|
return y == true && a == '👍';
|
||
|
}
|