I need to write a file with strings that represent floats.
This is easy if i make:
(I know i can use it without the str function)
But if i make this
The string is 1.e-005
But blitz doesn't recognize 1.e-005 as a float number, and i need to write a file that can be compilable under blitz. Any help?
This is easy if i make:
Writefile f,Str(12.45)
(I know i can use it without the str function)
But if i make this
v# = 0.00001 writefile f,v
The string is 1.e-005
But blitz doesn't recognize 1.e-005 as a float number, and i need to write a file that can be compilable under blitz. Any help?