No Parameters
Returns nothing. Cannot be used in expressions.
This does absolutely nothing. Changes nothing on the context, reads nothing from the context. Truely and honestly does nothing important.
world
{
start()
{
textln("Get ready to do nothing.");
noOp();
textln("Nothing done.");
quit;
}
}
Well, technically, it still counts as an operation executed. If you called NoOp enough times, eventually you will hit the operation limit for detecting "runaway" requests or endless loops.
So, it isn't exactly footprint-less. Calling it DOES something, but nothing that affects anything very important.