Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
  2. or download this
    perl -c Whatever.pm
    
  3. or download this
    my $self = { $x => shift, $y => shift, $w => shift, $h => shift };
    
  4. or download this
    { "" => $_[4] }
    
  5. or download this
    $ perl -e 'use Data::Dump; sub Box { my $self = { $x => shift, $y => s
    +hift }; dd $self } Box(qw{a b c})'
    { "" => "b" }