newline - Common Lisp's equivalent of \r inside the format function? - Stack Overflow

newline - Common Lisp's equivalent of \r inside the format function? - Stack Overflow

瀏覽:814
日期:2025-06-10
Basically, I'd like to do the following, only using Common Lisp instead of Python: print("Hello world.\r\n") I can do this, but it only outputs the #\newline character and skips #\return: (format t "Hello world.~%") I believe I could accom...看更多