04-01-2023, 12:07 AM
Quote:to examine an input's type
An input's type is determined by the variable that contains the value:
Code: (Select All)
Input "Enter a number"; aNum ' << single type
Print "A number"; aNum
Input "Enter a string"; aString$ ' << determines Type
Print "A string "; aString$
b = b + ...