This commit is contained in:
IgorCielniak
2025-12-11 20:07:10 +01:00
parent 2ea49d26f7
commit a33ae22573
22 changed files with 1855 additions and 278 deletions

View File

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