77ed2ccfb1
* update pxt.json files * Fix button event enums fixes https://github.com/microsoft/pxt-calliope/issues/206 * Fix Safari CSS Rule for iOS app fixes https://github.com/microsoft/pxt-calliope/issues/205 * aprove preffered repos should fix https://github.com/microsoft/pxt-calliope/issues/167
16 lines
305 B
Markdown
16 lines
305 B
Markdown
# @extends
|
|
|
|
## #examples
|
|
|
|
## Example: Count to 4
|
|
|
|
This program will show the numbers 0, 1, 2, 3, and 4 one after another on the LED screen.
|
|
|
|
```blocks
|
|
input.onButtonEvent(Button.A, input.buttonEventValue(ButtonEvent.Down), () => {
|
|
for(let i = 0; i < 5; ++i) {
|
|
basic.showNumber(i)
|
|
}
|
|
})
|
|
```
|