7 lines
161 B
Clojure
7 lines
161 B
Clojure
|
(ns swank.dev
|
||
|
(:use (swank util)))
|
||
|
|
||
|
(defmacro with-swank-io [& body]
|
||
|
`(binding [*out* @(:writer-redir (first @swank.core.server/connections))]
|
||
|
~@body))
|