Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    sub create_first {
        print "first!\n";
    }
    
  2. or download this
    $VAR1 = {
              'first' => sub { "DUMMY" }
            };
    first!
    
  3. or download this
    $dispatch{_create_first}->();
    
  4. or download this
    use warnings;
    use strict;
    ...
    sub create_first {
        print "first!\n";
    }
    
  5. or download this
    $VAR1 = {
              'create_first' => sub { "DUMMY" }
            };
    first!