Converting a double to a string

BlitzMax Forums/BlitzMax Beginners Area/Converting a double to a string

vinians(Posted 2012) [#1]
How can I convert a double like 10.22332323 to a string ? Im using String(10.22222) but its seams that its losing precicion...


Jesse(Posted 2012) [#2]
Local n! = 10.22332323!
Print String(n)



vinians(Posted 2012) [#3]
I was doing well but it was giving error. Then I discovered that the error was elsewhere. Thank!