RosettaCodeData/Task/Null-object/Ada/null-object.ada

6 lines
92 B
Ada
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
with Ada.Text_Io;
if Object = null then
Ada.Text_Io.Put_line("object is null");
end if;