Help for this page

Select Code to Download


  1. or download this
     if ($DEBUG) { print STDERR "Debug: some value"; }
    
  2. or download this
     print STDERR "Debug: some value" if $DEBUG;
    
  3. or download this
    if( $Going_by_the_grocery_store ) { pickup_milk(); }
       or
    if( $in_my_town ) { meet_for_beer(); }