From 56313d2cf4f8a0a964cd5f299253713e0f29dc8b Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Wed, 9 Jul 2025 18:17:09 -0400 Subject: [PATCH] add :clear msg to turtle_listener --- assets/prelude.ld | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/prelude.ld b/assets/prelude.ld index 8907b62..f84b448 100644 --- a/assets/prelude.ld +++ b/assets/prelude.ld @@ -1398,6 +1398,7 @@ fn turtle_listener () -> { (:home!) -> add_command! (self (), (:home)) (:goto!, x as :number, y as :number) -> add_command! (self (), (:goto, (x, y))) (:goto!, (x as :number, y as :number)) -> add_command! (self (), (:goto, (x, y))) + (:clear) -> add_command! (self (), (:clear)) (:show!) -> add_command! (self (), (:show)) (:hide!) -> add_command! (self (), (:hide)) (:loadstate!, state) -> {