增加 SML/NJ 中列表的打印深度

Increase print depth for lists in SML/NJ

我正在使用 Emacs 在 sml 中编写一个大约 4 行的简单函数,当我尝试在缓冲区中调用 function/evaluate 它时,它 returns 最后有 3 个点

val it = [1,2,2,2,2,2,2,2,2,2,2,2,...] : int list

最后的点是什么?我的代码不打印任何点。这是来自 Emacs 还是 sml?请任何提示。

另外我应该得到一个更长的列表,比如

[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]

这就是那里的圆点的原因吗?

is that why the dots there?

是的。