Multiline Comment

[Solved] Multiline Comment | Perl - Code Explorer | yomemimo.com
Question : Single Line Comment

Answered by : samer-saeid

// create a variable
var name = "Cartman"
// print the value
print(name)

Source : | Last Update : Tue, 21 Jun 22

Question : multiline comment

Answered by : ahmed-ragab-klegg8zmxdrl

"""
this is a docstring not a multiline comment
and this can be shown in output or not
"""
# mutiline comment
# is like
# that
# and this can not be shown cause it is a comment

Source : | Last Update : Thu, 08 Sep 22

Question : Multiple Line Comments

Answered by : eric-tam

#One
#way to do multiple line comments is to do this
#.
"""
Alternatively, you can also use this syntax.
"""
print("Hello multiple line comments")

Source : | Last Update : Tue, 05 Jul 22

Answers related to multiline comment

Code Explorer Popular Question For Perl