nanosleep
nanosleep — pauses the interpreter for seconds and nanoseconds.
nanosleep (seconds,nanosecs)
secondsThe number of seconds to pause.
nanosecsThe number of nanoseconds to pause.
t after the time has
elapsed.
This function will pause the interpreter for the total time of seconds + nanoseconds
Gamma>time(1,nanosleep( 0, 999999999 ));1.0009529590606689453 //this example is done with the ticksize at 0.5 ms.