Help for this page

Select Code to Download


  1. or download this
    $_ = "13foo";
    if($_ == 13) {
    ...
    }
    __OUTPUT__
    Works
    
  2. or download this
    my ($first, $rest) = split '', $str, 2;
    
  3. or download this
    $_ = reverse $str;
    print chop;