Consider an example: ``` clojure (defn foo [x y] (symbol (str x "/" y))) ``` I want to debug the following call to 'foo: ``` clojure (foo "bar" "baz") ``` Debugger step results as I press "n": | N | Now (bad) | Should be (good) | | --- | --- | --- | | 1 | "\"bar\"" | "bar" | | 2 | "\"baz\"" | "baz" | | 3 | "\"bar/baz\"" | "bar/baz" | | 4 | "bar/baz" | bar/baz |