1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-25 01:37:19 +00:00

remove debug print in test suite0001

This commit is contained in:
Ian Shehadeh 2022-01-19 12:49:02 -05:00
parent cb5af974a4
commit 0d31674166

View File

@ -150,7 +150,6 @@
(def [a b & rest] [:a :b nil :d]) (def [a b & rest] [:a :b nil :d])
(assert (= a :a) "tuple destructuring 6 - rest") (assert (= a :a) "tuple destructuring 6 - rest")
(assert (= b :b) "tuple destructuring 7 - rest") (assert (= b :b) "tuple destructuring 7 - rest")
(pp rest)
(assert (= rest [nil :d]) "tuple destructuring 8 - rest")) (assert (= rest [nil :d]) "tuple destructuring 8 - rest"))
# Marshal # Marshal