Project

General

Profile

Bug #524

Short inequality operator has not been implemented.

Added by Brian Flanagan over 3 years ago. Updated over 3 years ago.

Status:
Feedback
Priority:
Low
Target version:
-
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

Also available in: Atom PDF