Broken conversion from negative number to string
Created by: Lartu
When a negative number (for example -12.2
) is stored in a TEXT variable, a 0 is appended before it.
For example this:
data:
strVar is text
procedure:
store -12.989 in strVar
display strVar crlf
Displays 0-12.989
.