GNU Smalltalk - 格式化输出并禁用 GC 消息

发布于 2024-08-23 08:56:38 字数 194 浏览 8 评论 0原文

如何使用 GNU Smalltalk 3.0.5 stable 禁用垃圾收集消息?另外,有没有办法去掉输出字符串时输出的引号?

Ex:
'test' printNl. 

打印

'test'

而不是

test

How do I disable garbage collection messages with GNU Smalltalk 3.0.5 stable? Also, is there a way to remove the quote marks output when outputting strings?

Ex:
'test' printNl. 

prints

'test'

rather than

test

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

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

发布评论

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

评论(1

只是在用心讲痛 2024-08-30 08:56:38

当您将程序用作脚本(即使用gst -f)时,垃圾收集消息会自动禁用,或者您可以使用--no-gc-message(短选项) -g)。

printNl是面向程序员的打印消息。要打印不带引号的内容,请使用 display/displayNl。同样,打印的字符将不带美元符号。

Garbage collection messages are disabled automatically when you use your program as a script (i.e. with gst -f), or you can use --no-gc-message (short option -g).

printNl is a programmer-oriented printing message. To print without quotes use display/displayNl. Similarly, characters will be printed without dollar signs.

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