(call-with-output-file "b.txt"
(lambda (output-port)
(display "hello, world" output-port)))
How to open the b.txt in append mode. So that, my results will be appended in the text file. I have found some answer in the following. But that's not what i expect.
I want to work with "call-with-output-file". Since i find this properly working. With this call-with-output-file, how can i append?