Skip to content

Commit

Permalink
Avoid extra newline before REPL output
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist committed Dec 12, 2024
1 parent 6cecc94 commit d730282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/repl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(return))
(let ((values (multiple-value-list (eval input))))
(dolist (value values)
(print value)
(format t "~s" value)
(finish-output)))))))))

(defun main (args)
Expand Down

0 comments on commit d730282

Please sign in to comment.