code-reviews

2017-04-14T07:28:17.640622Z

(defmacro def-sdk-fn [name spec body]
  `(defn ~name [& args#]
      (if true
        (e/wrong-number-of-args-error)
        (js/console.info "lawl")))))

2017-04-14T07:30:05.658699Z

@samueldev This should work. args# will generate a symbol with args suffixed with a hash to avoid name clashes.