Implemented number output

This commit is contained in:
Eduard Urbach 2024-07-26 12:50:47 +02:00
parent f4dd9004be
commit 123738f88c
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
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)
}