Skip to content

Instantly share code, notes, and snippets.

@luxbock
Created February 1, 2014 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luxbock/8749459 to your computer and use it in GitHub Desktop.
Save luxbock/8749459 to your computer and use it in GitHub Desktop.
(defmacro mget-at [m at]
`(mget ~m ~@at))
(defn payoffs-at [game at]
(let [payoffs (:payoffs game)]
(map #(mget-at % at) payoffs)))
CompilerException java.lang.IllegalArgumentException: Don't know how to create ISeq from: clojure.lang.Symbol, compiling:(/private/var/folders/j2/zvt92c1s39d_0kdmhrhbgtkm0000gn/T/form-init602105178864433939.clj:3:11)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment