Commenting Your Code : Comments « Language Basics « Perl
- Perl
- Language Basics
- Comments
Commenting Your Code
#In Perl, you preface comments with a # .
#Perl will ignore all the text on a line after the # symbol.
# This is the comment.
print "Hello\tfrom\tPerl.\n";
Related examples in the same category