For example, ex_SetVMRunState.nxc, contains the following at the moment this post was written:
Code: Select all
SetVMRunState(0); // stopped
Code: Select all
SetVMRunState(UI_VM_IDLE); // stopped
There's many of these types of "examples" ** out there:
Code: Select all
y = ceil(x);
Code: Select all
float a = ceil(3.01);
// a == 4.0
float b = ceil(3.14);
// b == 4.0
float c = ceil(3.99);
// c == 4.0
float d = ceil(4.0);
// d == 4.0