Added byte type

This commit is contained in:
2025-02-21 11:27:45 +01:00
parent 8b932fb332
commit a42115c0fb
8 changed files with 16 additions and 13 deletions

View File

@ -8,7 +8,7 @@ number(x int) {
mem.free(buffer)
}
itoa(x int, buffer []int8) -> (*any, int) {
itoa(x int, buffer []byte) -> (*any, int) {
end := buffer + len(buffer)
tmp := end
digit := 0