Function: NoOp
Function: NoOp

Function: NoOp

NoOp ( )

"No operation." Does nothing.

Parameters

No Parameters

Returns

Returns nothing. Cannot be used in expressions.

What It Does

This does absolutely nothing. Changes nothing on the context, reads nothing from the context. Truely and honestly does nothing important.

Example

NoOp Example


world
{
	start()
	{
		textln("Get ready to do nothing.");
		noOp();
		textln("Nothing done.");
		quit;
	}
}

Additional Technical Notes

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.

×

Modal Header