2 categories::Core>Kernel
3 summary:: Runtime environment for the virtual machine and interpreter.
6 A Process is the runtime environment for the virtual machine and interpreter.
7 It has a subclass named link::Classes/Main:: which is where you should override the methods
8 of Process. There are two methods of interest. One is named code::startup:: and is
9 called after the class library has been compiled. The other is named code::run:: and
10 is called when the user chooses the Run menu command.
14 method::tailCallOptimize
15 Get or set tail call optimization. The default is on. Setting this to code::false:: can help with debugging by including intermediate levels in an error backtrace.
21 called after the class library has been compiled. Override this in class link::Classes/Main:: to do whatever you want.
25 called when the user chooses the Run menu command. Override this in class link::Classes/Main:: to do whatever you want.