Converting a double to a string
BlitzMax Forums/BlitzMax Beginners Area/Converting a double to a string
| ||
How can I convert a double like 10.22332323 to a string ? Im using String(10.22222) but its seams that its losing precicion... |
| ||
Local n! = 10.22332323! Print String(n) |
| ||
I was doing well but it was giving error. Then I discovered that the error was elsewhere. Thank! |