Using TinyScheme.
I'm writing my code to file (solved it in 50% here: how to write to file?) with:
(with-output-to-file "biophilia.c"
(lambda ()
(write code)
))
; and segmentation fault comes here
but it writes my code with "" qotes and \n\r as is so it doesn't translate it to newline.
I need to write code like it looks with (display code)
in example in racket docs there is printf but seems like TinyScheme implementation got no printf, maybe I need to discover (add code of it) printf?
display? Failing that,printfis a small piece of code. Example in TSPL3 IIRC. – leppie Jun 6 '12 at 6:47displayshould also write to the output-file. Likewritedoes. – leppie Jun 6 '12 at 7:26