| 0/4262 |
sub [ name ] [ (prototype) ] [ : attributes ] [ {statements;} ]
sub name [
(prototype) ]
Forward declaration. The actual subroutine will be defined later but this
allows us to refer to it now. The prototype is optional.
sub [ name ]
{statements;}
Normal subroutine definition. Any number of scalar arameters can be passed
to the subroutine and will show up in @_. Note that name IS optional. A function
can return a sub or a sub can be passed as a parameter. e.g. return sub
{ $_ += 1; };
sub name
(prototype) {statements;}
The prototype string helps to specify what this subroutine needs to recieve
in the way of parameters.
Parameters are passed to the subroutine as scalars in @_ and returned as list, scalar, or void.
The return value of a subroutine is the value of the last expression evaluated. More explicitly, a return statement may be used to exit the subroutine, optionally specifying the returned value
The interesting thing about & is that you can generate new syntax with it, provided it's in the initial position:
sub try (&@) {
my($try,$catch) = @_;
eval { &$try };
if ($@) {
local $_ = $@;
&$catch;
}
}
sub catch (&) { $_[0] }
try {
die "phooey";
} catch {
/phooey/ and print "unphooey\n";
};
That prints "unphooey".
| file: /techref/language/perl/sub.htm, 2KB, , updated: 2004/2/11 17:02, local time: 2008/7/5 09:13,
38.103.63.16:LOG IN
|
| ©2008 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? Please DO link to this page! Digg it! <A HREF="http://www.piclist.com/techref/language/perl/sub.htm"> Perl Subroutines</A> |
| Did you find what you needed? |
|
o List host: MIT, Site host massmind.org, Top posters @20080705 Apptech, Jinx, Xiaofan Chen, Alan B. Pearce, David VanHorn, Bob Axtell, William \Chops\ Westfield, Cedric Chang, olin piclist, Gerhard Fiedler, * Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Shultz Electronics, Larry Williams, David VanHorn, Bryan Whitehouse, Timothy Weber, David Challis. Peter Todd. on-going support is MOST appreciated! * Contributors: Neil Narwani, David Cary, Elemer AM Nyiry, Philip J Taylor, Gus Calabrese of Omegadogs.com, Gautama Venegas, Patrick B. Murphy, William Chops Westfield, Peter Todd, Leslie Ellis |
|
.