Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 206 Bytes

boolean.md

File metadata and controls

10 lines (7 loc) · 206 Bytes

Booleans

A boolean is either true or false.

boolean onFleek = true;
boolean badVibes = false;

This is used to represent situations where there are exactly two possible states.