suicmez/tests/arrays.sui
2025-12-15 13:53:57 +05:30

7 lines
126 B
Text

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