Help for this page

Select Code to Download


  1. or download this
        sub Hello;
    
  2. or download this
        sub Hello ($);
    
  3. or download this
        sub Hello ($) {
            my ($text) = @_;
            print $text;
        }