Help for this page

Select Code to Download


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