Implemented number output

This commit is contained in:
2024-07-26 12:50:47 +02:00
parent f4dd9004be
commit 123738f88c
12 changed files with 185 additions and 46 deletions

5
examples/itoa/itoa.q Normal file
View File

@ -0,0 +1,5 @@
import io
main() {
io.printNum(2147483647)
}