Help for this page

Select Code to Download


  1. or download this
    sub foo{ print join "-",@_};
    my @array=qw(a b c d e);
    foo(scalar @array,"Bar");
    
  2. or download this
    sub my_scalar {
      my $count=0;
      $count++ foreach @_;
      return $count;
    }
    
  3. or download this
    sub listy(\@){
        print join("*",@{$_[0]}),"\n";
    }
    listy @array;
    
  4. or download this
    sub assert ($;$) {
        unless($_[0]) {
    ...
        }
        return undef;
    }
    
  5. or download this
    assert @array,"Array must have elements within";
    
  6. or download this
    assert scalar @array,"...";