Talk:Ivy: Difference between revisions

Jump to navigation Jump to search
32 bytes removed ,  13:04, 16 December 2022
m
→‎Features - recursion: .. finish fix, prevent one last error category
m (→‎Features - recursion: .. stx upgr. / prevent error categories)
m (→‎Features - recursion: .. finish fix, prevent one last error category)
Line 6: Line 6:


Not sure it can be said that ivy has no recursion.
Not sure it can be said that ivy has no recursion.
<syntaxhighlight>
op fact x = x<=1: 1; x*fact(x-1)


fact 5
op fact x = x<=1: 1; x*fact(x-1)
120
</syntaxhighlight>
fact 5
120


Regards, —[[User:Mykhal|Mykhal]] ([[User talk:Mykhal|talk]]) 12:40, 16 December 2022 (UTC)
Regards, —[[User:Mykhal|Mykhal]] ([[User talk:Mykhal|talk]]) 12:40, 16 December 2022 (UTC)
3

edits

Navigation menu