"""
Welcome to PyKidos! This is a small JavaScript application (still rough around
the edges) that provides a Python playground running entirely in the browser,
which is convenient for teaching purposes.
The grid cells (color and text) on the right can be manipulated from Python.
You can make simple grid animations and react to click and keyboard events.
Kids (and adults) can program toy games to learn basic Python coding skills.
You have a few examples on the left, and you can create your own scripts for
your kids or for yourself!
"""
print
(
"Hello world!"
)
color
(
0
,
1
,
red
)
for
j
in
range
(
2
,
5
)
:
color
(
0
,
j
,
(
255
,
180
,
5
))
text
(
0
,
6
,
"Hi!"
)
text
(
0
,
8
,
"
🍎
"
)