JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(defn worker [m] (thread/send m "Hello function") (:send m "Hello method")) (thread/new worker) (pp (thread/receive)) # => prints Hello function (pp (thread/receive)) # => prints Hello method