Help for this page

Select Code to Download


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