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

6 lines
92 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
with Ada.Text_Io;
if Object = null then
Ada.Text_Io.Put_line("object is null");
end if;