- 手艺 tags:
- clojure
- opensource published: true comments: true
Last week, I prototyped an RPC framework, slacker, by clojure and for clojure.
What I did ?
Suppose you have a sets of clojure functions to expose. Define them under a namespace:[cc lang="clojure"]
(ns slapi)
(defn timestamp []
(System/currentTimeMillis))
;; ...more …