Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use NotMy::Module qw< setsomestring >;
    
    my $input= <STDIN>;
    setsomestring( $input );
    
  2. or download this
    no warnings;
    use NotMy::Module qw< setsomestring >;
    
    my $input= <STDIN>;
    setsomestring( $input );