|
|
|
|
|
by kyllo
4189 days ago
|
|
You would only want to execute an expression and throw away its value for its side effects. Useful for IO as there's normally nothing I want to pass the value of a println expression to, evaluating already prints it to stdout. Also useful for mutation, but doing this in Clojure feels wrong since the immutable data structures are among the language's greatest strengths. |
|