Help for this page

Select Code to Download


  1. or download this
    int product (int x, int y) {
      return x * y;
    ...
        related to prodID in the given company
      */
    }
    
  2. or download this
    sub foo {
      die "foo() needs at least one argument" if !@_;
    ...
      $z ||= $x * $y;
      # ...
    }
    
  3. or download this
    sub foo (
      my($x) :req,
    ...
    ) {
      # ...
    }