root/trunk/orca/tests/working/func_recurse.r

Revision 1, 79 bytes (checked in by krobillard, 3 years ago)

Import orca & thune.

Line 
1REBOL[]
2
3f: func [a] [
4    if a > 0 [
5        f a - 1
6    ]
7    print a
8]
9
10f 3
Note: See TracBrowser for help on using the browser.