Fixed incorrect const values

This commit is contained in:
Eduard Urbach 2025-02-21 13:47:56 +01:00
parent 04ece57b27
commit 1ca61190eb
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
22 changed files with 93 additions and 92 deletions

View file

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