Help for this page

Select Code to Download


  1. or download this
    sub func :cpp int {
      my int ($a,$b) = @_;
      return $a+$b
    }
    
  2. or download this
    sub func {
        (my int ($a, $b)) = @_;
    ...
        return $a + $b;
    }
    , 'cpp', 'int');