suicmez/tests/arrays.sui

7 lines
126 B
Text
Raw Normal View History

2025-12-15 13:53:57 +05:30
# Array test
fn main(args: [string]) -> int do
let arr = [1, 2, 3, 4];
let empty = [];
let x = arr[0];
x
end