Lesson 2.6.D: Break Out Game demonstration
Microsoft Philanthropies TEALS Program
Introduction to Computer Science
Let's look at the starter code.
We need a scoreboard for our game.
We can do that by creating a scoreboard sprite. We can use turtle graphics to write out the score.
We will broadcast show score whenever something changes.
Design: Why am I using broadcast show score instead of broadcast show score and wait?
We can broadcast show score and not care if it gets delayed because your user won't even notice.
2.6.D: Debrief