Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $file = '/Devel';
    ...
            (Missing operator before Devel?)
    syntax error at -e line 1, near "Devel"
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $file = 'foo/Devel/bar';
     print 'match' if $file =~ q|/Devel/|;
    "
    match