Help for this page

Select Code to Download


  1. or download this
    sub foo 
    {
    ...
    <TAB>}
    <TAB>return 0;
    }
    
  2. or download this
    sub foo 
    {
    ...
    <TAB>);
    <TAB>return %hash;
    }
    
  3. or download this
    my %hash = (
        foo        => 1, 
        longer_key => 1, 
    );
    
  4. or download this
    my %hash = (
        foo    => 1, 
        longer_key => 1, 
    );
    
  5. or download this
    <TAB>foo<SP><SP><SP><SP><SP><SP><SP><SP>=> 1, 
    <TAB>longer_key<SP>=> 1,