diff options
| author | mryouse | 2022-07-13 04:16:00 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-13 04:16:00 +0000 |
| commit | f2ed3ec7aaebb77b2440c3f5e9f2a6c8b098fc2b (patch) | |
| tree | 8bc91f3ded8daf13573772ac5fff4f5cdca3c916 | |
| parent | 52558379c85bef34f5a3b9984adc2ab55784ac27 (diff) | |
use raw strings in neb repl
| -rw-r--r-- | repl.neb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
