Implemented extern functions

This commit is contained in:
Eduard Urbach 2025-02-12 00:04:30 +01:00
parent 1083db6ab2
commit 3b66dae1d4
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
24 changed files with 304 additions and 169 deletions

View file

@ -1,3 +1,7 @@
extern kernel32 {
ExitProcess(code UInt)
}
exit(code Int) {
kernel32.ExitProcess(code)
}