Category:Arturo: Difference between revisions

m
minor edit
m (add link to unimplemented tasks)
m (minor edit)
 
Line 15:
* No reserved words or keywords - look for them as hard as you can; there are absolutely none
 
<syntaxhighlight lang="arturo">
<lang rebol>
factorial: function [n][
if? n > 0 -> n * factorial n-1
Line 23:
loop 1..19 [x]->
print ["Factorial of" x "=" factorial x]
</syntaxhighlight>
</lang>
 
===Implementation===
1,532

edits