/* REXX *** */ /* * Test REXX comparisons * * */ If '00000000' = '0E004950' then , Say '00000000 = 0E004950' Else , Say '00000000 \= 0E004950' If '00000000' == '0E004950' then , Say '00000000 == 0E004950' Else , Say '00000000 \== 0E004950' If '3E2' = '00300' then , Say '3e2 = 00300' Else , Say '3e2 \= 00300' If '3E2' == '00300' then , Say '3e2 == 00300' Else , Say '3e2 \== 00300' Exit 0