Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 161 Bytes

File metadata and controls

12 lines (9 loc) · 161 Bytes

Boolean

The type to use for a boolean that might be null is Boolean.

~void main() {
Boolean b = null;
IO.println(b);
b = true;
IO.println(b);
~}