Files
clang-p2996/stacker/test/tuck.st
Reid Spencer e6fd0e826b For PR1074:
Remove the projects/Stacker directory. LLVM is now free of dependency
on llvm-gcc.

llvm-svn: 33278
2007-01-17 02:18:44 +00:00

12 lines
263 B
Smalltalk

#
# TUCK test
#
# Logic: // w1 w2 -- w2 w1 w2
#
FORWARD success;
FORWARD failure;
: try_0 0 = IF success ELSE failure ENDIF ;
: try_2 2 = IF try_0 ELSE failure ENDIF ;
: try_1 1 = IF try_2 ELSE failure ENDIF ;
: MAIN 0 1 2 TUCK 2 = IF try_1 ELSE failure ENDIF ;