<< nfilename | Core | prefdir >> |
state = pause() |
pause(t) |
pause(newState) |
previousState = pause(newState) |
currentState = pause('query') |
t: double value. time (seconds) before to continue.
a string: 'on' (enable pause) or 'off' (disable pause setting)
a string: 'on' or 'off'
pause(t) suspends execution for t seconds.
pause without input argument wait until return key is pressed.
an example
state = pause
echo('press return to continue.')
pause
pause('off')
pause
pause('on')
pause(5)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET