RosettaCodeData/Task/Distributed-programming/Ada/distributed-programming-3.adb

10 lines
201 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
with Server;
with Ada.Text_IO;
procedure Client is
begin
Ada.Text_IO.Put_Line ("Calling Foo...");
Server.Foo;
Ada.Text_IO.Put_Line ("Calling Bar: " & Integer'Image (Server.Bar));
end Client;