From: Tim Ayers Date: Thu, 8 Jun 2000 08:11:06 +0000 (+0200) Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=74f5c340ebe31070e7a56e95f9fda2042294a033;p=p5sagit%2Fp5-mst-13.2.git [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure" Message-id: <393F38FA.9B5F4C7D@m.dasa.de> [resent by Richard Foley, Message-Id probably wrong] p4raw-id: //depot/cfgperl@6279 --- diff --git a/pod/perlsub.pod b/pod/perlsub.pod index f45f549..9976316 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -39,7 +39,7 @@ To call subroutines: Like many languages, Perl provides for user-defined subroutines. These may be located anywhere in the main program, loaded in from other files via the C, C, or C keywords, or -generated on the fly using C or anonymous subroutines (closures). +generated on the fly using C or anonymous subroutines. You can even call a function indirectly using a variable containing its name or a CODE reference.