mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
10 lines
136 B
Plaintext
10 lines
136 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_array.in
|
|
*/
|
|
|
|
function main(x: [i16; 1]) -> bool{
|
|
return x[0] == 0;
|
|
}
|