Hi!
I wonder if nested clojure expressions are allowed. E.g.
How so?
@achikin uploaded a file: https://clojurians.slack.com/files/U3A7Z18JZ/F8PKKHVB6/-.clj
I have when
inside an if
branch.
When i try the above I get Unexpected eof
Cool, give me a few minutes and I’ll let you know what I come up with!
So, I over looked it at first, but you currently have 3 branches to your if statement.
(if bla
"first bla bla"
"second bla bla"
(when bla
"third bla bla"))
This is valid, but I’m not sure if this is sufficient for your use case.
/*~ (if bla */
bla bla
/*~ (when bla */
bla bla
/*~ ) */
/*~ ) ~*/
If you give me some more details we can work out a suitable bit of code for you