Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
INCLUDE文件 IO 很明显。但我很困惑它是如何与LOAD. INCLUDE没有 a怎么办LOAD?从书中,
INCLUDE
LOAD
INCLUDE xxx ( -- )
加载文本文件 xxx(编译或执行)。
LOAD ( n -- )
加载磁盘块(编译或执行)。
从历史上看,FORTH 是一个完整的操作系统,为了简单起见直接读/写磁盘块(一个块是 1 KiB 文本,显示/列出/处理为 16 行,每行 64 个字符)。这就是LOAD处理。
如今,源代码在常规文件中处理,由底层复杂的操作系统管理。因此INCLUDE。