From f2ed3ec7aaebb77b2440c3f5e9f2a6c8b098fc2b Mon Sep 17 00:00:00 2001 From: mryouse Date: Wed, 13 Jul 2022 04:16:00 +0000 Subject: use raw strings in neb repl --- repl.neb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3