I'm here to ask for python style triple-double-quotes syntax in clojure.
For those unfamiliar they're documented here: http://docs.python.org/reference/lexical_analysis.html#strings
This is also a nice summary: http://diveintopython.org/getting_to_know_python/documenting_functions.html
Rich, you said you were considering it in March (http://groups.google.com/group/clojure/browse_thread/thread/8690a80c263d3b52/e8d73aebf11c2698
), did anything ever come of that?
Dan
Yes, I'd like the feature because it's a pain in the neck to go
through and escape strings when I know there's a better way.
Also sometimes it doesn't feel right to escape strings... for instance
in function doc strings I'd like to give an example return value. But
if the value has to be escaped to play nice with the docstring it can
get confusing confusing... for me at least. I'd like to put *exactly*
what will be returned.