mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
input_file:
|
||
|
- input/six_zeros.in
|
||
|
- input/count_to_6.in
|
||
|
*/
|
||
|
|
||
|
function main(a: [u8; (3, 2)]) -> bool {
|
||
|
return a == [0u8; (3, 2)];
|
||
|
}
|