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

9 lines
126 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// Object dimensioned, but not assigned
CFStringRef object
if ( object == NULL )
print "object is NULL"
end if
HandleEvents