Include 语句
include 语句所干的事情与导入模块截然不同: 它只是把文件的内容包含进来而已。 include 语句可用来把一个大模块切分成几个文件:
include fileA, fileB, fileC
include 语句可以在顶层之外使用,比如:
# 模块 A
echo "Hello World!"
# 模块 B
proc main() =
include A
main() # => Hello World!
当前内容版权归 vectorworkshopbaoerjie 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 vectorworkshopbaoerjie .