I know it's possible to write clear; reset; load "whatever.ms"; run
...
I just wanted what I came up with ... I'm putting this into my /usr/startup.ms
:
// Define reload function
reload = function
srcFile = globals._sourceFile
reset
clear
load srcFile
run
end function
// ... some more lines ...
_saveGlobals
(one could even name it rr
or something to save keystrokes)
Has the same effect, it's shorter and always "there".