suicmez/tests/arrays.sui
2025-12-20 11:02:42 +02:00

7 lines
114 B
Text

# Array test
fn main() -> int do
let arr = [1, 2, 3, 4];
# let empty = [];
let x = arr[1];
x
end