GNU Smalltalk - 格式化输出并禁用 GC 消息
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您将程序用作脚本(即使用
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 usedisplay
/displayNl
. Similarly, characters will be printed without dollar signs.