(defmacro def-sdk-fn [name spec body]
`(defn ~name [& args#]
(if true
(e/wrong-number-of-args-error)
(js/console.info "lawl")))))
@samueldev This should work. args#
will generate a symbol with args suffixed with a hash to avoid name clashes.