* CompOp Example Show that the comparison operators return the logical values 0 or 1; options ls=64 nodate pageno=1; data comp_op; expr = (5 eq 5); output; expr = (7 gt 11); output; expr = (2 ne 2); output; expr = (10 ~= 10); output; expr = (11 ^= 12); output; proc print; run; quit;