The George Programming Language

Keyword: null

Number type representing null or “nothing” (binary 0)

obj nothing = null;

bark(nothing); # outputs '0' because the null value in binary is 0

Since the null value is technically a boolean, boolean operations can be performed on null.

bark(not null); # true!