SML——一个小问题
我已经给出: spacegather : string list -> string
我必须创建一个函数,因此它将调用:
spacegather ["I", "am", "nice"] 转换为 -> “我很好”
谢谢
I have given : spacegather : string list -> string
I have to make a function, so it turns the call:
spacegather ["I", "am", "nice"] to -> "I am nice"
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
找出插值的实际意义。这里穿插一下:
Find the practical meaning of intercalate. Here is intersperse:
让我看看我是否做对了:
输出:val it =“我很好!!” : string
这应该可以吧?
Let me see if i get this right:
Output: val it = "I am nice!!" : string
This should do it, right?