Changes since the last SVN update are:
Added support for FreePascal-like compile-time $INCLUDE “macros”:
%FILE% and %LINE% insert the current filename and line number into the source
%FUNCTION% inserts the current function name, or class.method name into the source
%DATE% and %TIME% allow inserting the compile date/time
有没有一种方法我们可以在 DWScript 中定义宏(除了这些函数),就像人们在 excel 中定义宏(使用 VBscript)一样简单,其中脚本的名称将是稍后将使用的函数的名称,不添加{$Include XXX}
执行的脚本?
注意:我知道这可以通过管理要保存在特定文件中的书面脚本来完成,该文件称为ex函数。然后将添加的函数及其名称保存(Add),然后用户将编写 Add(1,2) 以获取结果;但是我的老板希望它看起来像 excel 中的 vbscript。