26 lines
403 B
Plaintext
Raw Normal View History

2024-07-26 12:50:47 +02:00
import mem
import sys
2024-08-05 18:47:24 +02:00
number(x Int) {
2024-07-26 12:50:47 +02:00
length := 20
buffer := mem.alloc(length)
2024-08-05 12:39:07 +02:00
address, count := itoa(x, buffer, length)
sys.write(1, address, count)
2024-07-30 20:02:55 +02:00
mem.free(buffer, length)
}
2024-08-05 18:47:24 +02:00
itoa(x Int, buffer Pointer, length Int) -> (Pointer, Int) {
2024-08-05 12:39:07 +02:00
end := buffer + length
tmp := end
2024-07-26 12:50:47 +02:00
digit := 0
loop {
x, digit = x / 10
tmp -= 1
tmp[0] = '0' + digit
if x == 0 {
2024-08-05 12:39:07 +02:00
return tmp, end - tmp
2024-07-26 12:50:47 +02:00
}
}
}