When debugging actual Bevy games, you almost always want to use `info!` instead of `println` in order to reduce blocking behavior. This is not at all obvious to Rust beginners, and showing them how to use `println` misleads them into thinking it's a good pattern to replicate. This was a simple find-and-replace change for me, and resulted in much faster looping.