mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
10 lines
155 B
Plaintext
10 lines
155 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/input_tuple_3x2.in
|
|
*/
|
|
|
|
function main(a: [u8; (3, 2)]) -> bool {
|
|
return a == [0u8; (3, 2)];
|
|
}
|