Hi! I try typed clojure + malli with this code:
(ns typed-clojure.core
(:require [typed.clojure :as t]
[malli.core :as m]))
(m/=> hello-world [:function
[:=> :cat :int]
[:=> [:cat :string] :int]])
(defn hello-world
([]
(hello-world "World"))
([name]
(format "Hello %s" name)))
(t/check-ns-clj) I got the following error: Unannotated var malli.core/-register-function-schema!typed.malli dependency