I am very new to processing (about 2 days new), and was wondering why this bit of code doesn't want to compile. I think its something to do with boolean? Any help would be nice. Thanks!
size (400,400);
background(0,225,0);
int q=0;
int w=0;
int a=0;
int s=0;
//basically, just creating diagonal lines across the screen
while (q=0)
{
line (q,w,a,s);
w=w+2;
a=a+2;
};
1