suicmez/tests/codegen/test_array_simple.sui

5 lines
75 B
Text
Raw Permalink Normal View History

2025-12-17 13:16:53 +05:30
fn main() -> int do
let arr = [1, 2, 3];
let x = arr[0];
x
end