Yeah, we definitely want to make it interesting. We've made some really cool libraries that make graphics on the canvas really easy to use and pretty intuitive, so you can make cool graphics, animations, and games very quickly.
For example, to draw a circle, you just need to type:
var circle = new Circle(radius);
circle.setPosition(x, y);
circle.setColor(Color.blue);
add(circle);