Cannot get over Ada's syntax conventions
procedure Hello_World is
Message : String := "Hello, World!";
begin
if Message'Length > 0 then
Ada.Text_IO.Put_Line (Message);
else
Ada.Text_IO.Put_Line ("Message is empty.");
end if;
end Hello_World;
>Variables have to be declared between `is` and `begin`.
>Pascal snake case with a space after the function name.
>if .. else .. endif