- or download this
use AtExit;
...
}
$recursive1->();
}
- or download this
our ($various,%shared,@vars);
...
# recursive1() and recursive2()
frobnicate(\&recursive1);
}
- or download this
use strict;
use warnings;
...
bar('Hello'); # Prints 'Hello Hello Hello'
bar('Goodbye'); # Prints 'Goodbye Goodbye Goodbye'
__END__