0
How to use multi line comment
2 ответов
0
I often use multi-line comments for more detailed explanations of code or to make a list of things to add etc. E.g.:
/*
Add the following:
1) ...
2) ...
*/
0
Use
starting: forward slash + asterisk /*
ending: asterisk + forward slash */
like this:
/*
etc
*/