remove printlns again

This commit is contained in:
Scott Richmond 2025-07-07 11:11:44 -04:00
parent aaefb47d18
commit e94246fb88

View File

@ -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