This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
Turner-CS4308-Homework_4/main.adb
Jonathan Turner f57dadaeac first commit
2023-10-25 10:04:40 -04:00

11 lines
186 B
Ada

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;