以 SML 格式打印到标准输出
datatype term = node of string*term list
| vnode of string
我有一个 term 类型的值。如何以 SML 格式将其打印到标准输出?
datatype term = node of string*term list
| vnode of string
I have a value of type term. How do I print it in SML to the standard output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要首先从
term
创建一个字符串,然后使用print
打印该字符串。要将term
转换为字符串,您可以定义如下函数:You need to first create a string out of the
term
and then print that usingprint
. To turn aterm
into a string, you could define a function like this: