changed the way that functions are defined

This commit is contained in:
IgorCielniak
2026-01-08 15:28:10 +01:00
parent d4dc6ceef5
commit b9098d9893
33 changed files with 232 additions and 198 deletions

View File

@@ -4,10 +4,10 @@ import stdlib/io.sl
extern long labs(long n)
extern void exit(int status)
: main
word main
# Test C-style extern with implicit ABI handling
-10 labs puti cr
# Test extern void
0 exit
;
end