Perl Tutorial

 

Table of Contents

Generating Output

Run the Program to Generate Output

To start, we'll simply generate the output by running the program through the debugger without setting any breakpoints.

  1. Clear the contents of mailexport.xml Click on the "mailexport.xml" tab in the editor. Delete the contents of the file - we will regenerate it in the next step. Save the file.
  2. Run the debugger Click on the "parse.pl" tab in the editor. From the menu, select Debug|Start (or <F5>). In the Debugging Options dialog, click OK to accept the defaults.
  3. View the Output Tab Notice the messages in the bottom left corner of the Komodo screen; these inform you of the status of the debugger. When the program has finished, the message "Process terminated with exit code 0" is displayed on the output tab in the Output pane.
  4. View the contents of mailexport.xml Click on the "mailexport.xml" tab in the editor. Komodo will inform you that the file has changed, and will re-load the file from disk.

Top Previous Next