Bug #524
Short 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
Updated by Francois Lionet about 3 years ago
- Status changed from New to Feedback
I have checked, works perfect with <> or != ...
I never heard of the \ "short inequality" operator, and real sure it was never implemented in AMOS.
?
Updated by Francois Lionet about 3 years ago
- Assignee changed from Francois Lionet to Brian Flanagan