导入Factor代码而不将其放入工作目录?

发布于 2024-11-30 11:21:49 字数 143 浏览 2 评论 0原文

我喜欢对代码进行版本控制。将每个 Factor 文件从我的 git 复制到 Factor 的工作目录并返回是一件很痛苦的事情。

Factor 是否有一个类似于 Ruby 的 require 的导入命令,即在当前目录中查找源代码?

I like version controlling my code. It would be a pain to copy every Factor file from my git over to Factor's work directory and back.

Does Factor have an import command that works like Ruby's require, one that looks in the current directory for source code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋心╮凉 2024-12-07 11:21:49

编写一个宏来执行此操作很容易。将以下内容添加到 ~/.factor-rc 中:

! INCLUDING macro that imports source code files in the current directory

USING: kernel vocabs.loader parser sequences lexer vocabs.parser ;
IN: syntax

: include-vocab ( vocab -- ) dup ".factor" append parse-file append use-vocab ;

SYNTAX: INCLUDING: ";" [ include-vocab ] each-token ;

您可以像这样使用它(请参阅 罗塞塔代码)。

#! /usr/bin/env factor

INCLUDING: scriptedmain ;
USING: io math.parser ;
IN: test

: main ( -- ) meaning-of-life "Test: The meaning of life is " write number>string print ;

MAIN: main

It's easy enough to write a macro that does this. Add the following to ~/.factor-rc:

! INCLUDING macro that imports source code files in the current directory

USING: kernel vocabs.loader parser sequences lexer vocabs.parser ;
IN: syntax

: include-vocab ( vocab -- ) dup ".factor" append parse-file append use-vocab ;

SYNTAX: INCLUDING: ";" [ include-vocab ] each-token ;

Which you can use like this (see Rosetta Code).

#! /usr/bin/env factor

INCLUDING: scriptedmain ;
USING: io math.parser ;
IN: test

: main ( -- ) meaning-of-life "Test: The meaning of life is " write number>string print ;

MAIN: main
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文