Category:Arturo: Difference between revisions

m
minor edit
m (added better intro example)
m (minor edit)
 
(2 intermediate revisions by 2 users not shown)
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===
Line 34:
 
===Todo===
[[Tasks not implemented in Arturo]]
[[Reports:Tasks_not_implemented_in_Arturo]]
 
{{language programming paradigm|Concatenative}}
{{language programming paradigm|Declarative}}
{{language programming paradigm|Dynamic}}
{{language programming paradigm|Functional}}
1,532

edits