mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
5 lines
93 B
Plaintext
5 lines
93 B
Plaintext
def main() -> u32 {
|
|
u32[3][2] foo = [[1, 2], [3, 4], [5, 6, 7]];
|
|
return foo[0][0];
|
|
}
|