+ 5
How do you make a comment in different languages?
I think one language (Java?) uses // before the line, others (like cmd commands on the computer) use a keyword, as I recall. How do you null a line into a comment, rather than active code? Please give specific examples, naming the language which uses it.
5 ответов
+ 6
C# also use // for one line coment
+ 3
To each language its own.
some use #.
some //
some *
some /*..... bla bla blal */
In Cobol its specificly * on position 6 of the line.
+ 2
# MASM single line
comment *
multi-line
*
0
python #
0
easy