Reset SPL engine


1. Create global variables
  1. Select "Application" tab.

  2. Type below script on the editor.

      
    clear
    
    a = 100
    b = 200
    
    print a + b
    
      
 

  1. Click "Send to MF Application" button or Press "F5" key.

  2. Executed result:




2. Test global variables
  1. Type below script on the editor.

      
    clear
    
    print a * b
    
      


  2. Click "Send to MF Application" button or Press "F5" key.

  3. Executed result:




3. Reset SPL Engine
  1. "reset" command clears all objects and variables within SPL engine.

  2. Type below script on the editor.

      
    clear
    
    reset
    
    print a * b
    
      


  3. Click "Send to MF Application" button or Press "F5" key.

  4. Executed result:



  5. Above result shows all variables were removed after calling "ResetEngine" command. So referencing variable after reset engine causes error message.