11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
|
with ComplexCalculator;
|
||
|
with Ada.Text_IO;
|
||
|
|
||
|
procedure Main is
|
||
|
begin
|
||
|
-- Your program logic goes here
|
||
|
|
||
|
-- Example: Display a message
|
||
|
Ada.Text_IO.Put_Line("Hello, Ada!");
|
||
|
end Main;
|