aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormryouse2022-07-13 04:16:00 +0000
committermryouse2022-07-13 04:16:00 +0000
commitf2ed3ec7aaebb77b2440c3f5e9f2a6c8b098fc2b (patch)
tree8bc91f3ded8daf13573772ac5fff4f5cdca3c916
parent52558379c85bef34f5a3b9984adc2ab55784ac27 (diff)
use raw strings in neb repl
-rw-r--r--repl.neb2
1 files changed, 1 insertions, 1 deletions
diff --git a/repl.neb b/repl.neb
index cc8ae06..4ec2401 100644
--- a/repl.neb
+++ b/repl.neb
@@ -36,7 +36,7 @@
(func print-result (res)
(print (concat "=> "
(if (eq? :string (typeof res))
- (concat "\"" res "\"")
+ (raw res)
(->string res)))))
; this is the actual loop part