adding a few more examples

This commit is contained in:
Peli de Halleux
2017-02-09 17:40:21 -08:00
parent 45c82767d0
commit a4a74bdd6b
5 changed files with 64 additions and 0 deletions

20
docs/examples/blinky.md Normal file
View File

@ -0,0 +1,20 @@
# Blinky
```blocks
basic.forever(() => {
basic.showLeds(`
. # . # .
# # # # #
# # # # #
. # # # .
. . # . .`
);
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .`
);
})
```