Actions
Bug #524
openShort inequality operator has not been implemented.
Start date:
10/01/2020
Due date:
% Done:
0%
Estimated time:
1:00 h
Affected version:
Description
Related to bug #523
See example below.
//
// The short inequality operator has not been implemented (fails with syntax error)
//
/*
Print
Print "SHORT INEQUALITY:"
Print "Inequality: ";X \ $10
Print "Inequality: ";X \ %10
Print "Inequality: ";X \ 10
*/
//
// Work-around: Use the alternate inequality operator (which also has problems with hex & binary)
//
Print
Print "INEQUALITY WORK-AROUND:"
Print "Inequality: ";X<> $10 // work-around for Bug #523
Print "Inequality: ";X<> %10 // work-around for Bug #523
Print "Inequality: ";X<>10
Actions