mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +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]];
|
||
|
}
|