defun
defun copied to clipboard
A macro to define clojure functions with parameter pattern matching just like erlang or elixir.
Hey, I'd like to use defun to construct a conditional decision tree. Is there any way to visualise it in a tree/graph format? Thanks
So, the README claims that this: ```clojure (defun say-hi ([:dennis] "Hi,good morning, dennis.") ([:catty] "Hi, catty, what time is it?") ([:green] "Hi,green, what a good day!") ([other] (str "Say hi...
As detailed in #24