Help for this page

Select Code to Download


  1. or download this
        $aa->[0] = my $one;
        $aa->[1] = my $two;
        $aa->[2] = my $three;
    
  2. or download this
    sub vector {
        my ($aa) = @_;
    ...
        my $three = $aa->[2];
        my $vector = V($one, $two, $three);
    }