Hello Processing
Here is a first program in Processing.size(400, 400);
ellipse(200, 200, 100, 50);
The size(400, 400)
statement creates a window that is 400 by 400
pixels in size.
The ellipse(200, 200, 100, 50)
statement draws an ellipse at
position (200, 200), width 100, and height 50.