// JS
function foo () {
bar(1)
}
# Ruby
def foo
bar(1)
end
; Clojure
(defn foo []
(bar 1))
As you can see from the images below, Clojure doesn't allow you to refer to an undeclared symbol. I believe this takes away quite a bit of typing error issues.
No comments:
Post a Comment