我使用table创建简单的包。因为包有很多程序所以我把代码拆分成很多文本文件。每个文件都会通过 Maple 的约定检查
我想在编译之前创建一个主文件并将所有文本代码文件“包含”到主文件中。
restart;
HINHHOC9 := table():
$include <"D:/CaoHoc/LuanVan/Code/workspace/LuanVan/01_DocDuLieu.maple"> ;
url := currentdir();
save HINHHOC9, cat(url, "/HINHHOC9.m");
libname := libname, url;
with(HINHHOC9);
但是主文件编译错误
> restart;
> HINHHOC9 := table():
>
on line 5 of "D:/CaoHoc/LuanVan/Code/workspace/LuanVan/00_MasterFile.maple",
syntax error, cannot open $include file:
"D:\CaoHoc\LuanVan\Code\workspace\LuanVan\01_DocDuLieu.maple":
$include <"D:/CaoHoc/LuanVan/Code/workspace/LuanVan/01_DocDuLieu.maple"> ;
^
> quit
memory used=0.6MB, alloc=6.3MB, time=0.14
请帮我找出包含和编译代码的方法
谢谢