Perl: Comment Syntax
Line Comment
Comment are text ignored by the compiler.
Comment syntax start with
NUMBER SIGN #
to end of line.
# this line is a comment print(3 + 4) # returns 7. also comment
Block Comment
=pod
block comment.
cannot be nested.
=cut