From 3640ddbd0e3402b8d51282c7ddfed4320e00aab1 Mon Sep 17 00:00:00 2001 From: Michael Elliot Braun Date: Thu, 31 Mar 2016 17:39:17 -0700 Subject: [PATCH] udpate quiz ans --- docs/lessons/speed-button/quiz-answers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lessons/speed-button/quiz-answers.md b/docs/lessons/speed-button/quiz-answers.md index acdf3765..e9d1c380 100644 --- a/docs/lessons/speed-button/quiz-answers.md +++ b/docs/lessons/speed-button/quiz-answers.md @@ -37,7 +37,7 @@ After two button presses, **count** will be equal to 2. ## 5. If the rectangle below represents the BBC micro:bit, shade the areas that will be displayed after five button presses on Button A. Explain why that particular area is shaded. ```blocks -count_ = 0 +let count_ = 0 input.onButtonPressed(Button.A, () => { count_ = count_ + 1 basic.showNumber(count_, 100)