Get ready, because this is it: my very first official coding episode in the series has just dropped! As I promised you in the video, all the code we talked about is right here, ready for you to dive in. Let's start coding together, right now!
==============================================================
fill(255, 0, 255);
draw = function() {
var label = mouseX + " , " + mouseY;
background(255, 255, 255);
ellipse(mouseX, mouseY, 1, 1);
text(label, mouseX, mouseY);
};
==============================================================
There you go enjoy your code BUT WAIT remember to LIKE and SUB to the channel. Thank you for watching this video, bye!