This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
4rpl:baserpl:comparators:eq [2019/03/15 17:54] – external edit 127.0.0.1 | 4rpl:baserpl:comparators:eq [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | |||
- | ---- | ||
- | |||
- | ====== eq ====== | ||
- | |||
- | eq | ||
- | |||
- | ===== Description ===== | ||
- | |||
- | Top two items are popped from the stack and compared for equality. 0 or 1 is pushed back to the stack where 1 indicates equal and 0 (zero) ndicates not equal | ||
- | |||
- | the equal/not equal evaluation can also be performed with “true” (1) and false(0), respectively. | ||
- | |||
- | ===== Examples ===== | ||
- | |||
- | < | ||
- | if (1 eq (1)) | ||
- | trace(" | ||
- | endif | ||
- | |||
- | # alternate example | ||
- | |||
- | 1 dup eq | ||
- | if true | ||
- | trace ("one is always one") | ||
- | endif | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||