The NIL Object (.nil)

The NIL object.nil is a special environment object that does not contain any data. It represents the absence of an object, the way a null string represents a string with no characters. Its only methods are those of the Object class. You can use The NIL object (rather than the null string) to test for the absence of data in an array entry:

if board[row,column] = .nil
then ...