Help for this page

Select Code to Download


  1. or download this
    sub mySub{
      my $Arg = shift;
    ...
    sub mySub2{
      my ($Arg) = @_;
    }
    
  2. or download this
    sub test{
      $_[0] = 'New Value';
    ...
    print "$Var\n";
    test ($Var);
    print "$Var\n";
    
  3. or download this
    Hi there
    New Value