Software Engineer -- blockchain data infrastructure, pipelines, and production systems at scale
Email | Github | Blog | Google Scholar | Telegram | Poland (UTC+1)
Software Engineer -- blockchain data infrastructure, pipelines, and production systems at scale
Email | Github | Blog | Google Scholar | Telegram | Poland (UTC+1)
| (ns demo.specs | |
| (:require [clojure.spec.alpha :as s] | |
| [clojure.spec.test.alpha :as st])) | |
| (s/fdef divide | |
| :args (s/cat :x integer? :y integer?) | |
| :ret number?) | |
| (defn divide [x y] (/ x y)) |