如何在Windows OS 7中从命令行运行因素文件?

时间:2019-06-23 04:08:15

标签: windows

因子文件为: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

但没有任何输出到标准输出。

enter image description here

1 个答案:

答案 0 :(得分:0)

例如,使用脚本 test.factor ,您调用:

factor -run test.factor

USE: io
IN: hello-world

: hello ( -- ) "Hello world" print ;

MAIN: hello

输出:

你好世界