Guess What? I know you've been skipping videos. DON'T Skip this one! - https://youtu.be/sF0g1iWmGD8
Type in and run this program:
void setup()
{
size(400,400);
strokeWeight(4);
}
void draw()
{
point (random(400),random(400));
}
The code inside the { and the } symbols below setup is run once at the beginning of the program.
The code inside the { and the } symbols below draw is run over and over again in a loop.
Change the program to use a random color and random size of point each time a new point is drawn.