mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
11 lines
187 B
Plaintext
11 lines
187 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 == [[1u8, 2], [3, 4], [5, 6]];
|
|
} |