Anonymous recursion: Difference between revisions

m
→‎{{header|Perl}}: future-proof for 5.36, explicit :prototype
m (BaCon, BASIC256, and BBC BASIC moved to the BASIC section.)
m (→‎{{header|Perl}}: future-proof for 5.36, explicit :prototype)
Line 2,304:
{{trans|PicoLisp}}
<code>recur</code> isn't built into Perl, but it's easy to implement.
<syntaxhighlight lang="perl">sub recur :prototype(&@) {
my $f = shift;
local *recurse = $f;
2,392

edits