1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 18:48:12 +03:00
mal/hy/mal_types.hy
2017-09-21 22:35:30 -05:00

7 lines
155 B
Hy

(defclass MalException [Exception]
(defn --init-- [self val] (setv self.val val)))
(defclass Atom []
(defn --init-- [self val] (setv self.val val)))