suicmez/tests/arrays.sui

7 lines
114 B
Text
Raw Normal View History

2025-12-15 13:53:57 +05:30
# Array test
2025-12-17 21:22:00 +05:30
fn main() -> int do
2025-12-15 13:53:57 +05:30
let arr = [1, 2, 3, 4];
2025-12-17 21:22:00 +05:30
# let empty = [];
2025-12-20 11:02:42 +02:00
let x = arr[1];
2025-12-15 13:53:57 +05:30
x
end