📄 initializers.txt
字号:
Initializers are called when the forth kernel is started, to do someinitialization stuff. Pro: If code needs initialization you can keep this in place with the codeand don't need to patch the kernel itself to do so.There are 2 types of initializers. "Normal" and "Late" initializers.Since initializers are only called during startup, they don't need a name.Definition: initializer ( xt -- ) late-initializer ( xt -- )Examples: :noname <definition> ; initializer :noname some-base initializations ; late-initializer Late initializers are run after all ordinary initializers havebeen executed.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -