Help for this page

Select Code to Download


  1. or download this
        my ($filename) = "/path/to/file";
        my ($filemode) = "immolate";
        my ($opmode)   = "seek";
        my ($filetype) = "image/gif";
    
  2. or download this
        my (%config) = (
               filename => "/path/to/file",
               filemode => "immolate",
               opmode   => "seek",
               filetype => "image/gif",
        );
    
  3. or download this
         my ($thing) = $config{'thing_to_mash'};
         for (my $x = 0; $x < 100_000_000; $x++)
         {
               DoCrazyStuff($thing, $x, Foo($x));
         }
    
  4. or download this
        sub Config { return $config{$_[0]}; }