On 11/27/22 12:39, [email protected] wrote:
"  if (£1/=a) then",

The numerically not equal operator converts both arguments to numbers and then performs a numeric compare.

Your compare of 6010A fails because the digit A is not decimal. (Specs has no facility to compare hexadecimal.)

Use /== to compare strings for not equal. With the /== operator, numbers are converted to string before the comparison. Conversion to string can fail only if you run out of storage.

Reply via email to