]NEXTFILE would be my first choice also.
Alternatively you could think of defining a dummy function like:
∇STOP
'STOP CALLED'
∇
and set ⎕STOP to its first line:
1 ⎕STOP 'STOP'
or so,
The difference is that ]NEXTFILE closes the script file, while
⎕STOP only stops execution (so you can continue execution
in the same script after making some changes).
Best Regards,
Jürgen
On 6/12/21 5:46 AM, Kacper Gutowski
wrote:
On Fri, Jun 11, 2021 at 08:27:58PM -0600, enz...@gmx.com wrote:
)off ends the apl session completely - i want to keep the ws open and just end the script execytuib and then edit the script in directory (and move around the '→0' or what ever can end the script execution - for debug) and then )copy the edited script back into the ws and it runs until it hits the '→0'
Maybe something like ]NEXTFILE then.
-k