From 6c4ea6d12ed9d1ee66ca98119dc975a4f9436b9c Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Mon, 7 Jul 2025 11:11:44 -0400 Subject: [PATCH] remove printlns again --- assets/prelude.ld | 2 -- 1 file changed, 2 deletions(-) diff --git a/assets/prelude.ld b/assets/prelude.ld index 3a2e60d..8669db9 100644 --- a/assets/prelude.ld +++ b/assets/prelude.ld @@ -1250,8 +1250,6 @@ fn add_command! (turtle_id, command) -> { update! (command_id, inc) update! (turtle_commands, append (_, (turtle_id, idx, command))) let prev = do turtle_states > unbox > turtle_id - print!("previous state: {turtle_id}", prev) - print!("applying command", command) let curr = apply_command (prev, command) update! (turtle_states, assoc (_, turtle_id, curr)) :ok