Skip to content

r6eve/r6eve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

(require '[clojure.spec.alpha :as s])

(s/def ::name string?)
(s/def ::align #{:law :neutral :chaos})
(s/def ::level pos-int?)
(s/def ::magic (s/coll-of string?))

(s/def ::profile
  (s/keys :req-un [::name ::align ::level ::magic]))

(s/conform ::profile
           {:name "r6eve"
            :align :neutral
            :level 5
            :magic ["Functional & Object-oriented Programming"
                    "Perl-like Programming"
                    "AUR package maintenance"
                    "Pulinpa (against Linux Kernel)"]})

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published