mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +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)];
|
|
} |