I find nested comments pretty useful, it’s more co...
# getting-started
d
I find nested comments pretty useful, it’s more common during development that I have some code
A(); B(); /*C(); D();*/ E();
and I want to comment out B and E like
A(); /*B(); /*C(); D();*/ E();*/
which just works in Kotlin but doesn’t in Java.
👍 3