Help for this page

Select Code to Download


  1. or download this
      use constant DEBUG => 0;
      if (DEBUG) {
    ...
          " when DEBUG is true.\n";
        );
      }
    
  2. or download this
      macro num_max (x,y) {
        ((x) > (y) ? (x) : (y))
      }
    
  3. or download this
      print "You owe: \$", {% num_max $total-$paid, 0 %}, "\n";
    
  4. or download this
      unless ($expression) {  # include
        ... lines of code ...
    ...
      } else {                # include
        ... lines of code ...
      }                       # include