External & goto
Is it possible to call a lovely goto from another script, when using external?
Like
external("die", "reallydie");
goto part2;
(of procedure reallydie)
Like
external("die", "reallydie");
goto part2;
(of procedure reallydie)
I think you'd have to add another procedure say "reallydiepart2", put goto part2; in there and call that instead. Would that do what you want?