Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
var draw = function() {
background(165, 219, 162);
fill(255, 254, 222);
rect(20, 100, 364, 200);
fill(0, 0, 0);
textSize(20);
text("What programming language is this?", 39, 200);
};
if (mouseIsPressed) {
text("java",39,200);
} else {
text("What programming language is this?",39,200);
}
nao consigo achar onde estou errado.