You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
true
Exemplos
rect(30, 20, 50, 50);
boolean b =true;
if(b == true) {
line(20, 10, 90, 80); // Esta linha é desenhada
} else {
line(20, 80, 90, 10); // Esta linha não é desenhada
}
Descrição
Palavra chace que representa o valor lógico "verdadeiro". O valortrue pode ser atribuído apenas a variáveis do tipo boolean.