+ 3
Comments
How do you make text a comment?
7 Respostas
+ 6
in html a comment is
<!-- some text here -->
in C# a comment is
// some text here
or for a multi line comment
/* some
text
here */
+ 5
Js/c/C+/Java/php:
//Single line comment
/*Multi line comment*/
html, Pug, haml.etc:
<!—Multi line comment(HTML only support Multiline comments.)—>
py:
#
“”””
‘’’
‘’’
Rb:
#
=begin=end
0
Just print //
0
Hello.
0
I whant to test.
0
× 16-
- 1
// and /*