mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
8 lines
114 B
Smalltalk
8 lines
114 B
Smalltalk
|
#
|
||
|
# RECURSE test
|
||
|
#
|
||
|
FORWARD success;
|
||
|
FORWARD failure;
|
||
|
: recurser 100 = IF 1 + RECURSE;
|
||
|
: MAIN 1 recurser success ;
|