Help for this page

Select Code to Download


  1. or download this
    package My::StringUtils;
    
    ...
    END { string_reverse( undef ); }
    
    1
    
  2. or download this
    use strict;
    use warnings;
    ...
    use My::StringUtils qw( string_reverse );
    
    say string_reverse( "Hello world" );