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

8
tests/basic_types.sui Normal file
View file

@ -0,0 +1,8 @@
# Basic type checking test
fn main() -> int do
let x = 5;
let y = 10.5;
let z = true;
let s = "hello";
x
end