Help for this page

Select Code to Download


  1. or download this
     perl -we "$b=14; print $b"
    syntax error at -e line 1, near "="
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    echo hello world
    perl -we "if($_=~/World/){print 111}"
    
    Unquoted string "world" may clash with future reserved word at -e line
    + 1.
    111