updated lesson satic page and pogo

This commit is contained in:
Michael Elliot Braun
2016-03-31 15:51:42 -07:00
parent 7c862ce0f5
commit 1439942b45
7 changed files with 185 additions and 71 deletions

View File

@ -47,7 +47,7 @@ let count = 0
while (count < 10) {
basic.pause(100)
basic.showNumber(count)
count == count + 1
count = count + (count - 1)
}
```