Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下图显示 LFE 截断显示的结果。与 SBCL REPL 相比,我只能看到不到一半的结果数据。
如何在 LFE 中显示所有结果?
要查看它以 LFE 格式打印,您可以使用
(lfe_io:format "~p\n" (list (lists:seq 1 50)))
或者,更容易,在 LFE repl 中:
(pp (lists:seq 1 50))
还有一个(p ...)调用可以在没有漂亮打印的情况下将其写出来。
(p ...)
在这种情况下,我经常使用 io:format:
io:format("~p~n", [X]).
我想这和 LFE 一样,但语法略有不同。