quite a few fixes, overall repo cleanup and some restructurization in the stdlib

This commit is contained in:
IgorCielniak
2026-01-12 19:03:49 +01:00
parent 3f87f12cf1
commit 47a45c050e
25 changed files with 582 additions and 648 deletions

21
fn_test.sl Normal file
View File

@@ -0,0 +1,21 @@
import stdlib/stdlib.sl
import stdlib/io.sl
import fn.sl
fn foo(int a, int b){
1
puti cr
return a b +;
}
fn bar(int a, int b){
return a + b;
}
word main
extend-syntax
foo(3, 2)
puti cr
bar(1, 2)
puti cr
end