Improved parameter handling
All checks were successful
/ test (push) Successful in 14s

This commit is contained in:
Eduard Urbach 2025-06-21 21:28:21 +02:00
parent 3717a61414
commit 320e023d74
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
9 changed files with 45 additions and 21 deletions

View file

@ -1,5 +1,5 @@
import os
write(buffer []byte) -> int {
write(buffer []byte) -> (written int) {
return os.write(0, buffer, len(buffer))
}