+ 2
How do I comment?
6 odpowiedzi
+ 4
// for a single line
/*
for
multiple
lines
*/
https://www.javatpoint.com/java-comments
+ 3
html = <!-- text -->
js, css, java, c/c++ = /* multi-line */
js, java, c/c++ = // one line
java = /** documentation */
python = # comment
etc etc etc... haha
or what do you want to comment?
good luck!! 💪
+ 1
I still not understand for now🙂
+ 1
What language ? john mmegwa
+ 1
Java
+ 1
You use comments to document your code. If you or someone wants to look at in the future reading the comments can make it easier to understand.
Heracles Ezzequiell mentioned how to do it.