Eng | Rus
 
Education -> Solutions -> Multiline comment ln perl
 
 
 
Simple Seo Solutions
SEO and Promotion
sites
VoiceNotebook.com
Speech to text for AndroidAndroid speech to text

Multiline comment ln perl

We can use POD (plain old documentation) to insert mutiline comment ln perl. Just write in the beginning of the comment:
=BEGIN
and after the commented lines:
=END
Sample:
print "some code";
=BEGIN
print "some commented code";
print "another commented code";
=END
© prjsoft.ru