2 Initializers are called when the forth kernel is started, to do some
4 Pro: If code needs initialization you can keep this in place with the code
5 and don't need to patch the kernel itself to do so.
7 There are 2 types of initializers. "Normal" and "Late" initializers.
9 Since initializers are only called during startup, they don't need a name.
13 late-initializer ( xt -- )
16 :noname <definition> ; initializer
19 some-base initializations
22 Late initializers are run after all ordinary initializers have