Support functions having a doc string immediately following their definition. e.g.,
func = x ->
"""
This function adds a number to itself
"""
x + x
func.doc-string() ;; => "This function adds a number to itself"
This could be utilized in editor tooling and in the repl.
Support functions having a doc string immediately following their definition. e.g.,
This could be utilized in editor tooling and in the repl.