VAL
Convert a string to a number.
Example
PRINT VAL("Hi World!")
LINE BREAK
PRINT VAL("26")
LINE BREAK
DEF value#=VAL("37.37")
PRINT value#
Output
0
26
37.37
26
37.37
Put down that phone!
Please view me on real computer.
VAL
Convert a string to a number.
PRINT VAL("Hi World!")
LINE BREAK
PRINT VAL("26")
LINE BREAK
DEF value#=VAL("37.37")
PRINT value#