aboutsummaryrefslogtreecommitdiff
path: root/projects/Stacker/test/swap.st
blob: 14176dbd10a5d415ba7266dec3846fb888b53ec4 (plain)
1
2
3
4
5
6
7
8
9
#
# DUP test
#
FORWARD success;
FORWARD failure;
: phase3 0 = IF success ELSE failure ENDIF ;
: phase2 2 = IF phase3 ELSE failure ENDIF ;
: MAIN 0 1 2 SWAP 1 = IF phase2 ELSE failure ENDIF ;