diff options
author | Eduardo Julian | 2017-08-22 20:51:25 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-08-22 20:51:25 -0400 |
commit | 11ad64c0cf9da63e10bbb9bfe6e81168013b954e (patch) | |
tree | 4847599d00aa05caa88e9d22507c43a08bb63404 /luxc | |
parent | e1838963ae67f31c22d611531470117c155c19f5 (diff) |
- Small fixes and refactorings.
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) |