defun cube-eval () (swank-client:with-slime-connection (connection "localhost" 10001) (swank-client:slime-eval (quote (handler-case (mycube 100) ;; function to evaluate (on remote) ideally defined under a math package (error (c) (format t "We caught a condition.~&") :error))) connection)))