Help for this page

Select Code to Download


  1. or download this
    foo = bar
    foo = bar bar
    
  2. or download this
    %hash = {
        "foo" => "bar"
        "foo" => "bar bar"
    )
    
  3. or download this
    if( $_ =~ /(\w*) = (\w*)/ ){
        $filehash{ $1 } = $2;
    }