xxxxxxxxxx
//This is a comment. Check out the Processing Reference at https://processing.org/reference/
//This sets up our sketch. It is the first thing that happens when we run our project, and only happens once.
void setup() {
size(800,600);
background(255, 204, 0); //Yellow background colour
}
//This is where we add our code for drawings and animations.
//This happens next, but loops over and over, in the same order (or sequence) that the code is listed.
void draw() {
rect(350, 50, 100, 500); //Rectangle (watch strap)
ellipse(400, 300, 150, 150); //Circle (watch face)
}