Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    chomp(my $string = <>);
    
    print $string eq reverse($string) ? 'Yes' : 'No', "\n";
    
  2. or download this
    Enter string: 123
    No
    
  3. or download this
    Enter string: 121
    Yes