DECIMAL SEPARATOR FOR FLOATING NUMBER IS COMMA
ACTION
The command SEPARATOR_IS_COMMA set the comma as decimal separator for floating number.
SYNTAX:
SEPARATOR_IS_COMMA
USE ERROR EXAMPLE
dim f$
f$="123.456"
print val(f$)
separator_is_comma
f$="123,456"
print val(f$)
separator_is_point
f$="123.456"
print val(f$)
SEPARATOR_IS_COMMA
SEPARATOR_IS_COMMA
SEE ALSO
SEPARATOR_IS_POINT