View Single Post
  #54  
Old 10.02.2020, 23:26
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
One can comment out / in entire lines only, not a part of a line? So to exchange two commands against each other the easiest way would to do it like this(?):
Yes that is the correct way to comment out the entire line to prevent the command from being executed.

It is also possible to comment part of the line.

Code:
// Entire line is commented

This is part is not commented // This is part is commented

This is not commented /* This is commented */ This is not commented

/*
This is commented
This is commented
This is commented
*/
Reply With Quote