使用 R5RS 方案在文件中写入换行符
我一直在寻找一种在文件中写入换行符的方法 我必须使用 R5RS,我在上一个问题(换行端口)中看到,但这在这个版本中不起作用,\n 也不起作用,
有什么想法吗?
一切都写在一行中 (写“你好”p) (写“w”p)
给我一个带有hellop的文件
I've been looking for a way to write a newline in a file
I have to use R5RS, I saw in a previous question (newline port) but this doesn't work in this version, neither does the \n,
any ideas?
everything is being written in a single line
(write "hello" p)
(write "w" p)
gives me a file with hellop
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 I/O 函数不允许您指定端口,您可以使用
with-output-to-file
来代替:If your I/O functions don't allow you to specify a port, you may be able to use
with-output-to-file
instead: