aboutsummaryrefslogtreecommitdiff
path: root/repl
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2018-03-22 00:53:56 +0100
committerDimitri Sokolyuk <demon@dim13.org>2018-03-22 00:53:56 +0100
commitce2d2a718d45acf7167776709f0a10b7b695492e (patch)
tree84dbaa10c26d402b047eb450bf38db6f428a3b94 /repl
parente0efae97b77ef3e0c3c8435b5ac44bc1dab7b94a (diff)
megacheck
Diffstat (limited to 'repl')
-rw-r--r--repl/repl.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/repl/repl.go b/repl/repl.go
index 2303927..3d75f8a 100644
--- a/repl/repl.go
+++ b/repl/repl.go
@@ -18,7 +18,7 @@ func Start(in io.Reader, out io.Writer) {
env := object.NewEnvironment()
for {
- fmt.Printf(PROMPT)
+ fmt.Print(PROMPT)
scanned := scanner.Scan()
if !scanned {
return