ICT Code
My favorite foods:
fill(255, 0, 0);
textSize(25);
text("My favorite foods:", 36, 36);
fill(0, 255, 238);
textSize(15);
text("1. Pasta", 63, 91);
fill(0, 255, 13);
text("2. Pizza", 63, 126);
fill(255, 145, 0);
text("3. Burger", 63, 161);
Mouse Tracker:
fill(255, 0, 255);
draw = function() {
background(255, 255, 255);
ellipse(mouseX, mouseY, 12, 12);
var label = mouseX + ", " + mouseY;
text(label, mouseX, mouseY);
};