Anonymous recursion: Difference between revisions

(→‎{{header|TXR}}: Drop @(do ...))
Line 1,389:
 
=={{header|Perl 6}}==
{{works with|Rakudo|2015.12}}
 
In addition to the methods in the [[Perl]] entry above, and the Y-combinator described in [[Y_combinator]], you may also refer to an anonymous block or function from the inside:
<lang perl6>sub fib($n) {
Anonymous user