因子文件为:C:\Users\Administrator\Desktop\test.factor
"Hello, world" print
然后如何从命令行运行它,我已经安装了factor,factor.exe和factor.com在$ PATH中。
我不想启动因子ui,只想运行此文件并将输出打印到stdout。
我已经用fator.exe -run test.factor
测试过,并且因子文件是:
USE: io
IN: hello-world
: hello ( -- ) "Hello world" print ;
MAIN: hello
但没有任何输出到标准输出。
答案 0 :(得分:0)
例如,使用脚本 test.factor ,您调用:
factor -run test.factor
USE: io
IN: hello-world
: hello ( -- ) "Hello world" print ;
MAIN: hello
输出:
你好世界