Join Slack
Powered by
I find nested comments pretty useful, it’s more co...
# getting-started
d
dalexander
03/23/2017, 3:23 PM
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
8
Views
Open in Slack
Previous
Next