pxt-calliope/docs/examples/rando.md
Galen Nickel 6398d60b3b
Add info to some examples (#716)
* Add info to some examples

* Push a few more descriptions

* Couple more

* Touch up card descriptions

* Fix 'drop' typo

* Live typo
2018-03-21 16:30:58 -07:00

158 B

Rando

Generate a random coordinate and display it on the LED screen.

basic.forever(() => {
    led.toggle(Math.random(5), Math.random(5))
})