Perl: Comment Syntax
Line Comment
Comment are text ignored by the compiler.
Comment syntax start with # (U+23: NUMBER SIGN) to end of line.
# this line is a comment print(3 + 4) # returns 7. also comment
Block Comment
There is no block comment in perl.