Content
@
https://warpcast.com/~/channel/mxjxn
0 reply
0 recast
0 reaction
Max Jackson
@mxjxn
(ns mxjxn.summer-style-spec) (require '[clojure.spec.alpha :as s]) (s/def ::bottoms #{:jorts :jeans}) (s/def ::footwear #{:birks :cross-trainers}) (s/def ::hat #{:cycling-cap :trucker-hat}) (s/def ::sunglasses true?) (s/def ::top (s/or :tee #{:t-shirt} :button-up #{:camp-shirt})) (s/def ::summer-outfit-spec (s/keys :req-un [::bottoms ::top ::footwear ::sunglasses] :opt-un [::hat])) ;; I miss writing clojure
0 reply
1 recast
7 reactions
Lord D Lyana|BRE3
@lyanamod
Morse
0 reply
0 recast
0 reaction