From d98cb67988bb5ec0867dccb853bbf321dfc362f2 Mon Sep 17 00:00:00 2001 From: zeroflag Date: Fri, 27 Dec 2024 23:56:26 +0100 Subject: [PATCH] r --- Makefile | 4 ++-- repl.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d67267d..18f4517 100644 --- a/Makefile +++ b/Makefile @@ -17,12 +17,12 @@ test: else \ echo "Running Lua tests ..."; \ for file in $(TEST_LUA_FILES); do \ - echo "Running $$file..."; \ + echo " - $$file..."; \ $$luaver $$file || exit 1; \ done; \ echo "Running Equinox tests ..."; \ for file in $(TEST_EQX_FILES); do \ - echo "Running $$file..."; \ + echo " - $$file..."; \ $$luaver $(EQUINOX) $$file || exit 1; \ done; \ fi; \ diff --git a/repl.lua b/repl.lua index 65bcea0..a8be0bf 100644 --- a/repl.lua +++ b/repl.lua @@ -2,7 +2,7 @@ local compiler = require("compiler") compiler:eval_file("lib.eqx") print("Welcome to the Delta Quadrant on Equinox (" .. _VERSION .. ")") -print("Engage warp speed and may your stack never overflow.") +print("Engage warp speed and may your stack never overflow.\n") while true do io.write("# ")