pxt-calliope/docs/blocks/loops/repeat.md
2019-01-18 07:52:48 -08:00

253 B

@extends

#examples

Example: Blinking heart

Flash the heart icon on the screen 4 times.

for (let i = 0; i < 4; i++) {
    basic.showIcon(IconNames.Heart)
    basic.pause(300)
    basic.clearScreen()
    basic.pause(300)
}