Files
circ/scripts/zcx_tests/inconsistent_array.zxf
2025-02-12 09:07:15 -08:00

5 lines
93 B
Plaintext

def main() -> u32 {
u32[3][2] foo = [[1, 2], [3, 4], [5, 6, 7]];
return foo[0][0];
}