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
{{ message }}
This repository was archived by the owner on Jun 16, 2026. It is now read-only.
villares edited this page May 24, 2020
·
4 revisions
Nome
false
Exemplos
rect(30, 20, 50, 50);
boolean b =false;
if(b == false) {
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 "falso". O valor falso pode ser atribuído apenas a variáveis do tipo boolean.