Hi Ashley
Suppose I have a function like this
* On function 'Function1'
* Parameter 'x' (Number)
-> System: Set Variable1 to ""
-> Functions: Set return value "horray"
----+ System: x = 0
-----> System: Set Variable2 to "qwerty"
After executing the return statement,why is the substatement after return statement is getting executed? I mean,shouldn't function end after return statement?