Arc Forumnew | comments | leaders | submitlogin
1 point by FredBrach 4552 days ago | link | parent

>> (let tbl (table) (map (fn (k v) (= tbl.k v)) '(x y z) '(1 2 3.14)) tbl)

Haha. just rewrite = as it should - the binding operation being an atomic operation. = should be

(fn (k v) (bind k v))

EDIT: oh ok it's assign not bind.