Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
     # much later in the program
    if ( $some_condition) {
      warn "DEBUG: ", Dumper ( $whatever );
    }
    
  2. or download this
    if ( $some_condition ) {
      require Data::Dumper;
      warn "DEBUG: ", Data::Dumper::Dumper( $whatever );
    }