Tips and Tricks With Perl

From Free Knowledge Base- The DUCK Project
Revision as of 19:09, 20 June 2007 by Admin (talk | contribs) (New page: _______________________________________________________________________________ Put up a bunch of HTML without so many print statements... print <<end_html; <center> <h2...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
_______________________________________________________________________________

Put up a bunch of HTML without so many print statements...

  print <<end_html;

Text Heading

end_html

*note: The final end_html must begin in text column 1, fully left justified.

_______________________________________________________________________________