1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00

Common Lisp: Fix printing of user defined functions

This commit is contained in:
Iqbal Ansari 2017-08-22 16:53:03 +05:30
parent baa3c3af1a
commit 3da6a0cb09

View File

@ -49,5 +49,5 @@
(types:vector (pr-mal-sequence "[" ast "]" print-readably))
(types:hash-map (pr-mal-hash-map ast print-readably))
(types:atom (format nil "(atom ~a)" (pr-str (mal-data-value ast))))
(types:builtin-fn "#<func>")
(types:fn "#<func>")
(types:builtin-fn "#<builtin-func>"))))