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.
我一直在寻找一种在必须使用 R5RS 的文件中编写换行符的方法,我在上一个问题(换行端口)中看到了,但这在这个版本中不起作用,\n 也不起作用,
有任何想法吗?
一切都写在一行中(写“hello”p)(写“w”p)
给我一个 hellop 文件
如果您的 I/O 功能不允许您指定端口,您可以with-output-to-file改用:
with-output-to-file
(with-output-to-file "test.out" (lambda () (display "Hello, world!") (newline)))