retroforth/example/light-weight-flow-control.retro
crc 9e03717deb normalize names for examples (with a couple of exceptions), closes #38
FossilOrigin-Name: 088675e452ed86a712563c8b2597fe4d47da59bdea0e40becdd1e028a84c47b0
2021-01-24 01:13:04 +00:00

37 lines
1.2 KiB
Forth

# Lightweight Flow Control
These were adapted from HerkForth.
| 0=; | n- | exit word if TOS = 0 |
| 0<>; | n- | exit word if TOS <> 0 |
| <; | nn- | exit word if NOS < TOS |
| >; | nn- | exit word if NOS > TOS |
| <>; | nn- | exit word if NOS <> TOS |
| if; | f- | exit word if TOS is TRUE |
| ?; | f- | exit word if TOS is TRUE. Leave Flag on stack if TRUE. |
~~~
:0=; n:zero? [ as{ 'popopodr i 'drdrre.. i }as ] if ;
:0<>; n:zero? [ as{ 'popopodr i 'drdrre.. i }as ] -if ;
:<; lt? [ as{ 'popopodr i 'drdrre.. i }as ] if ;
:>; gt? [ as{ 'popopodr i 'drdrre.. i }as ] if ;
:<>; -eq? [ as{ 'popopodr i 'drdrre.. i }as ] if ;
:if; [ as{ 'popopodr i 'drdrre.. i }as ] if ;
:?; dup [ as{ 'popopodr i 'drdrre.. i }as ] if drop ;
~~~
# Tests
```
:test (n-) n:even? if; 'Odd! s:put nl ;
#1 test
#2 test
```
```
nl '----------------- s:put nl
:test (n-) n:even? ?; 'Odd! s:put nl ;
#1 test dump-stack reset nl
#2 test dump-stack reset nl
```