Bug #79
Updated by Baptiste Pillot almost 5 years ago
Example: (all return integers) ~~~ X$="1234.56" Y$="-234.56" Print Val(X$), Val(Y$) ' Should print: 1234.56 -234.56 -1234.56 Vx=Val(X$):Vx#=Val(X$) Print Vx,Vx# ' Should print 1234 1234.56 Vy=Val(Y$):Vy#=Val(Y$) Print Vy,Vy# ' Should print -234 -234.56 ~~~