Help for this page

Select Code to Download


  1. or download this
    use Test::More;
    use autodie;
    ...
    $text =~ s/\s+//g if $lax_in_whitespace;
    ok $text eq reverse $text, "palindrome";
    done_testing;