Added fmt package

This commit is contained in:
2025-04-07 15:13:57 +02:00
parent cac2bad2fe
commit 08ea91f46c
11 changed files with 25 additions and 20 deletions

5
lib/io/read.q Normal file
View File

@ -0,0 +1,5 @@
import sys
read(fd int, buffer []byte) -> int {
return sys.read(fd, buffer, len(buffer))
}