This commit is contained in:
Masashi 2025-12-17 21:22:00 +05:30
commit 4a85a0008c
3 changed files with 49 additions and 2 deletions

View file

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