Help for this page

Select Code to Download


  1. or download this
    if ($_ = (m/^[\$]\w/)) {
    
  2. or download this
    perl -MO=Deparse,-P -e 'if($_ = (m/foo/)) { print 'hi' }'
    if ($_ = /foo/) {
        print hi $_;
    }
    -e syntax OK