Bug #743
Fix is affecting integers.
Status:
Resolved
Priority:
High
Assignee:
-
Target version:
-
Start date:
04/27/2021
Due date:
% Done:
0%
Estimated time:
1:00 h
Affected version:
Description
Fix should only affect floating point values:
Example:
Fix 5 X=12 Y#=12.345 Print X Print Y# Add X,3 Print X
Currently, the result is:
12.00000 12.34500 15.00000
Result SHOULD be:
12 12.34500 15
Updated by Paul Kitching over 2 years ago
A similar problem to the one I found for bug 750. Not sure if it's related to the same reason behind the scenes.