Is there any syntax for multi-line code block comment in Windows batch script? I know REM
and ::
for line-by-line comment, but it is not efficient to comment a code block.
I'm looking for the block comment style like something below in PHP:
/*
This is multi-lines
block comment
*/