Help for this page

Select Code to Download


  1. or download this
    myMultipleArgSub(\@first,\@second,\%third);
    
  2. or download this
     my ($xarray,$values,$xlabel,$ylabel,$title) = shift(@_);
  3. or download this
    my $xarray = shift;
    my $xarray = shift;
    ...
    my $xlabel = shift;
    my $ylabel = shift;
    my $title  = shift;
    
  4. or download this
    my ($xarray,$values,$xlabel,$ylabel,$title) = @_;
  5. or download this
    push @data,$_ for @{$xarray};
    push @data,$_ for @{$values};
    
  6. or download this
    use strict;
    use warnings;