Actions
Bug #743
openFix 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
Actions