Arc Forumnew | comments | leaders | submitlogin
1 point by parenthesis 5935 days ago | link | parent

Why does that work?


2 points by sjs 5935 days ago | link

tostring captures whatever is sent to stdout.

    (tostring (prn "hi"))
returns the string "hi\n" instead of actually printing it.

-----