Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
    ...
    $_=join '', reverse split '';
    
    print ;
    
  2. or download this
    print drop_the_first('1234'); 
    sub drop_the_first {
        split '', shift;
        shift;
        return join '',@_;
    }