RosettaCodeData/Task/Null-object/FutureBasic/null-object.basic
2023-07-01 13:44:08 -04:00

8 lines
126 B
Text

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