Refactored the interface of the io package

This commit is contained in:
Eduard Urbach 2025-04-07 18:02:36 +02:00
parent 08ea91f46c
commit a9d783c675
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
12 changed files with 29 additions and 35 deletions

View file

@ -8,6 +8,6 @@ main() {
buffer[2] = 'l'
buffer[3] = 'l'
buffer[4] = 'o'
io.out(buffer)
io.write(buffer)
mem.free(buffer)
}