// Hopefully this is enough to make sure the code inside Runnable is loaded (in case our jar was removed from disk) static Runnable rHardExit_runnable = r { pcall { print("Hard VM exit"); } System.exit(1); }; static Runnable rHardExit() { ret rHardExit_runnable; }