SPL Engine commands - Stop all running loop and procedure


1. "Stop" command
  1. "stop" command make stop all running loops and proceudres in SPL engine.

  2. Execute below script to run while loop

      
    clear
    
    i = 0
    
    while (true)
    {
    	i++
    	
    	print "i = " + i
    	wait 1000
    }
    
      
 

  1. Executed result is as follows.



  2. Use "Stop" command to make stop all running loop or procedures.

      
    stop
    
      


  3. Executed result is as follows.