1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-31 07:33:01 +00:00

Change name of debugp to description. Use it

the repl for easier inspection of structures.
This commit is contained in:
bakpakin
2017-07-02 11:53:51 -04:00
parent 62987de75b
commit 2742e3679d
5 changed files with 91 additions and 87 deletions

View File

@@ -58,7 +58,7 @@
(def scheck (fn [x]
(def dat (serialize x))
(def deser (deserialize dat))
(assert (= x deser) (string "serialize " (debugp x)))
(assert (= x deser) (string "serialize " (description x)))
))
(scheck 1)