Just a quick question, is there a command similar to the Python command "pass" which does absolutely nothing other than be a place holder for something in the future?
For example, say I am writing an if statement:
if (x == 1)
do something
else
do something else
I know I need the if statement, but I don't want to write the actual things to do yet. Is there a command I can put in to stop the compiler errors, but that will not actually do anything?
I could comment it out, but I was wondering if there is another way.