fisl

fisl is scheme lox
git clone git://git.alexkarle.com.com/fisl
Log | Files | Refs | README | LICENSE

commit 19e70c7f8db03511f343f8243233e428497acf5c (patch)
parent aac74e196655b29072cf69f17b81b9416dbd15e2
Author: Alex Karle <alex@alexkarle.com>
Date:   Wed,  9 Nov 2022 00:26:15 -0500

cleanup: Remove repl logging at startup

Diffstat:
Mfisl.scm | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/fisl.scm b/fisl.scm @@ -50,7 +50,6 @@ (cond ((eq? argc 0) (thread-start! (lambda () (run-prompt) (exit 0))) - (print "starting the repl") (nrepl 1234)) ((eq? argc 1) (run-file (car args))) (else (die "Too many arguments. Usage: fisl [FILE]")))))