Help for this page

Select Code to Download


  1. or download this
    sub adding ($$)
    { my $first=shift;
    ...
    }
    
    1;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    my $answer = ( $one + $two);
    
    adding($one,$two);
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    my $answer = ( $one + $two);
    
    adding($one,$two,$answer);