Skip to content

Instantly share code, notes, and snippets.

@swannodette
Created January 25, 2013 12:24
Show Gist options
  • Save swannodette/4634047 to your computer and use it in GitHub Desktop.
Save swannodette/4634047 to your computer and use it in GitHub Desktop.
bag.cljs
(deftype Bag [store]
Object
(add [_ x] (.push store x))
(print [_] (.log js/console store)))
(defn bag [arr] (Bag. arr))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment