xxxxxxxxxx
26
function setup() {
createCanvas(500, 400);
}
function draw() {
background(220);
// function excecution or calling
sayHello(100,100, "Hello World 🌏", 255, 255, 255, 10);
sayHello(250,220, "Hello Kitty 😻", 255, 255, 0, 20);
sayHello(350,300, "I am Hungry 🍓", 255, 0, 255, 30);
}
/* function declaration
it is part of the same
comment
*/
function sayHello(positionX, positionY, customText, R, G, B, fs) {
textSize(fs);
fill(R, G, B);
text(customText, positionX, positionY);
}