RosettaCodeData/Task/Null-object/FutureBasic/null-object.basic

9 lines
126 B
Plaintext

// Object dimensioned, but not assigned
CFStringRef object
if ( object == NULL )
print "object is NULL"
end if
HandleEvents