| |
SPL Engine commands - Reset engine
1. "Reset" command
- "reset" command resets SPL engine that all variables and instances are cleared.
- Execute below script to define variable
| |
clear
s = 0
for (i = 1; i <= 10; i++)
{
s = s + i
}
print "s = " + s
| |
|
|
|
|
- Executed result is as follows.
- Before use "reset" command, you should stop all running loops and procedures by using "stop" command.
- Type "reset" command to reset SPL engine.
- Executed result is as follows.
- Referencing variable after reset causes error message because all variables were cleared.
- Executed result is as follows.
|