Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    my @strictures;
    BEGIN {
    ...
            1;
        }   or  warn "Line ",__LINE__,": $@";
    }   or  warn "Line ",__LINE__,": $@";
    
  2. or download this
    perl -MO=Deparse -e "'Foo'->{key}= 'value'"
    $Foo{'key'} = 'value';
    -e syntax OK