Files
PolyORB/examples/dsa/echo/client.adb
Pablo Oliveira eba79fbdf9 * Add echo example for DSA personality.
* Add initial DSA documentation.

[Imported from Perforce change 10409 at 2006-12-01 22:55:23]

Subversion-branch: /trunk/polyorb
Subversion-revision: 37868
2006-09-29 17:53:00 +00:00

9 lines
212 B
Ada

with Ada.Text_IO; use Ada.Text_IO;
with Server;
procedure Client is
begin
Put_Line ("The client has started!");
Put ("Thus spake my server upon me:");
Put_Line (Server.Echo_String ("Hi!"));
end Client;