Help for this page

Select Code to Download


  1. or download this
    [chris@localhost perl]$ perl -e '$foo = q{\0}; $bar = chr(0); print "m
    +atch!\n" if $foo eq $bar;'
    
  2. or download this
    [chris@localhost perl]$ perl -e '$foo = q{\0}; $bar = chr(0); print "m
    +atch!\n" if $foo == $bar;'
    match!
    
  3. or download this
    [chris@localhost perl]$ perl -e '$foo = qq{\0}; $bar = chr(0); print "
    +match!\n" if $foo eq $bar;'
    match!