aboutsummaryrefslogtreecommitdiffstats
path: root/projects/Stacker/test/nip2.st
blob: a171028a8052f94185830484660e9110a2129d30 (plain)
1
2
3
4
5
6
7
8
9
#
# NIP2 test
#
FORWARD success;
FORWARD failure;
: test_0 0 = IF success ELSE failure ENDIF ;
: test_3 3 = IF test_0 ELSE failure ENDIF ;
: test_4 4 = IF test_3 ELSE failure ENDIF ;
: MAIN 0 1 2 3 4 NIP2 test_4 ;