Help for this page

Select Code to Download


  1. or download this
    sub x{ 
        ++$_  for @_ 
    ...
    
    print $a, $b, $c;;
    12346 12347 12348
    
  2. or download this
    sub x{ 
        my( $a, $b, $c ) = @_;
        ++$_  for $a, $b, $c;
    }
    
  3. or download this
    sub xyz (\$) {
        my $rStr = shift;
    ...
        vec $$rStr, ...;
        ...
    }