Processing Forum
void setup()
{
size(250,250);
stroke(0);
background(255);
}
void draw()
{
box(100);
}
I am just starting. When I try to run this program it says "box() is not available with this renderer". How can I fix this?