Hi all,
Can anybody please tell me why my this program is not getting executed.
***************************** Top of Data ******************************
/*REXX*/
/* REXX SHOWING UNTIL/WHILE LOOPS*/
A = 6; B = 1; C = 1
DO WHILE A \= B
SAY "B= " B
B = B + 1 ;
END
DO UNTIL A = C
SAY "C= " C
C = C + 1 ;
END
**************************** Bottom of Data ****************************
I'm getting error:
4 +++ DO WHILE A :
IRX0013I Error running SSS, line 4: Invalid character in program
***
actually i'm getting problem in using the "NOT EQUAL TO" operator. I'm using this "\" operator. but its not working.
If anyone can give me the proper key for "not equal to" it 'll be very helpful for me.