Arc Forumnew | comments | leaders | submitlogin
4 points by almkglor 5964 days ago | link | parent

...and? The equivalent (and correctly running!) Arc code is:

  (def make-counter ()
    (let x 0
      (fn ()
        (= x (+ x 1)))))
So... why do you want to avoid 'let ?