in reply to Better ways to make multi-line comments in Perl?

An example of '<#' '>' multiline tags
<# This is a multiline comment 
   print color 'bold blue'; 
   #print "This text is bold blue.\n"; 
   #print color 'reset'; 
   print "This text is normal.\n"; > 
   <# This is a multiline comment > 
<# This is another multiline comment #blah  blah>   
# Here is a single line comment 

Originally posted as a Categorized Answer.

  • Comment on Re: Better ways to make multi-line comments in Perl?