bugfix for printing none

This commit is contained in:
2020-01-31 17:28:31 +01:00
parent 10ba753ee3
commit 14d25abc35
2 changed files with 7 additions and 3 deletions

View File

@@ -88,7 +88,8 @@ unset.")
(match @t
(Integer i) (str i)
(Floating f) (str f)
(Str s) (str s)))
(Str s) (str s)
(None) @"none"))
(defn to-int [x]
(match x