lesson updates

This commit is contained in:
Michael Elliot Braun
2016-03-30 11:15:31 -07:00
70 changed files with 221 additions and 196 deletions

View File

@ -24,7 +24,7 @@ We create a **variable**, `count` to keep track of the current count. The number
```blocks
let count_ = 0
input.onButtonPressed("A", () => {
input.onButtonPressed(Button.A, () => {
count_ = count_ + 1
basic.showNumber(count, 150)
})
@ -40,7 +40,7 @@ We are only pressing on button pressed once. So the number to display on the mic
```blocks
count_ = 0
input.onButtonPressed("A", () => {
input.onButtonPressed(Button.A, () => {
count_ = count_ + 1
basic.showNumber(count_, 100)
})