[Go to list]
SPL Engine commands - Stop all running loop and procedure
1. "Stop" command
"stop" command make stop all running loops and proceudres in SPL engine.
Execute below script to run while loop
clear i = 0 while (true) { i++ print "i = " + i wait 1000 }
Executed result is as follows.
Use "Stop" command to make stop all running loop or procedures.
stop
Executed result is as follows.
[Go to list]