this never prints `find-file`:
(let [wsp-name "blah"
initial-file "myfilename"]
(str "(progn (russ/open-workspace \"" wsp-name "\") "
(when initial-file
(str "(find-file \"" initial-file "\")") " ")
")"))
Answer: b/c of the very last " " in the `(when initial-file ...)` list - the
middle str is just dropped