|
|
|
|
|
by wostusername
2380 days ago
|
|
>The first example is missing the scope brackets likely enclosing the expressions Sure, but so is the Clojure one. So I guess it's more like: fun bar () {
let x = 5,
y = 10
foo(x,y)
}
vs (defn bar []
(let [x 5
y 10]
(foo x y)))
|
|