mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 08:01:42 +03:00
13 lines
186 B
Plaintext
13 lines
186 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function main(n: bool) -> bool {
|
|
const x = [false; (2, 2)];
|
|
const z: bool = x[0][0];
|
|
|
|
return n == z;
|
|
}
|