Skip to content
View r6eve's full-sized avatar
Block or Report

Block or report r6eve

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
r6eve/README.md
(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 4
            :magic ["Functional Programming"
                    "Object-oriented Programming"
                    "Perl-like Programming"
                    "Pulinpa (against Linux Kernel)"]})

@r6eve's activity is private