Help for this page

Select Code to Download


  1. or download this
        sub demonstration {
            return {
                demonstration_data => { demo_data => shift },
            };
        }
    
  2. or download this
        sub demonstration {
            my $demonstration_data = { demo_data => shift };
    ...
                                            'demo_data' => 'foo'
                                          }
                };
    
  3. or download this
        sub foo {
            my $foo = shift;
    ...
    
        __END__
        Long output, run it yourself.