kinda working fn

This commit is contained in:
IgorCielniak
2025-12-14 16:34:02 +01:00
parent 6574222280
commit 08cb47b560
9 changed files with 623 additions and 79 deletions

13
t.sl Normal file
View File

@@ -0,0 +1,13 @@
import stdlib.sl
import fn.sl
fn foo(int a){
return a + 1;
}
: main
extend-syntax
foo(1)
puts
0
;