Files
PolyORB/examples/dsa/echo/server.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
143 B
Ada

package body Server is
function Echo_String (S : String) return String is
begin
return S;
end Echo_String;
end Server;