Quote:
Originally Posted by agraham
You are making it sound much more complicated than it really is, it is really very simple. Normal variables, both global and local are just string variables. Arrays of the type they are declared as or strings if no type is specified. Numeric operations are always performed on Doubles and variables and arrays are coerced to and from Doubles when required for arithmetic operations. Boolean values are represented as the strings "true" and "false".
|
Do I understand it right that all the time I am using variable in program, Basic converts this variable from string "12345678.9876543" to value? If yes isn't it much time and processor consuming?