diff options
Diffstat (limited to 'luxc')
-rw-r--r-- | luxc/src/lux/repl.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/luxc/src/lux/repl.clj b/luxc/src/lux/repl.clj index 974267486..9cf2c5982 100644 --- a/luxc/src/lux/repl.clj +++ b/luxc/src/lux/repl.clj @@ -73,7 +73,8 @@ state*) (&/$Right state** outputs) (do (doseq [[_type _value] outputs] - (.println System/out (str "=> " (pr-str _value) "\n:: " (&type/show-type _type)"\n"))) + (.println System/out (str ": " (&type/show-type _type) "\n" + "=> " (pr-str _value) "\n"))) (recur state** (inc repl-line) false)) (&/$Left ^String ?message) |