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