From 6ff7eca031ac1487a9515cb8550e0ec5c4e5016e Mon Sep 17 00:00:00 2001 From: SouthFox Date: Sun, 3 Nov 2024 00:16:32 +0800 Subject: [PATCH] fix: add missing list --- game.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.scm b/game.scm index a8ae63a..e518b86 100644 --- a/game.scm +++ b/game.scm @@ -173,7 +173,7 @@ (append part (if (= start 0 ) '() - (substring (car string-list) 0 start)) + (list (substring (car string-list) 0 start))) (list (func (substring (car string-list) start (+ start len)))) (if (= (+ start len) (string-length (car string-list))) '()