This commit is contained in:
IgorCielniak
2025-12-08 18:14:52 +01:00
parent 3a63347380
commit 2ea49d26f7
8 changed files with 2099 additions and 18 deletions

10
main.sl
View File

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