How can I print on the terminal within a defop (http route)? Within a defop, pr outputs in the socket, how can I redirect temporarily stdout to the terminal then?
Thanks
(let real-stdout (stdout) (w/stdout (stderr) (prn "a") (w/stdout real-stdout (prn "b"))))
-----