first commit

This commit is contained in:
Masashi 2025-12-15 13:53:57 +05:30
commit 4ff159dd4a
20 changed files with 6529 additions and 0 deletions

7
tests/arrays.sui Normal file
View file

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