c232abcc72
svn path=/branches/work/~ervin/sodep/; revision=922828
18 lines
263 B
Plaintext
18 lines
263 B
Plaintext
include "console.iol"
|
|
|
|
inputPort PrinterService {
|
|
Location: "socket://localhost:10000"
|
|
Protocol: sodep
|
|
RequestResponse:
|
|
printInput
|
|
}
|
|
|
|
main
|
|
{
|
|
printInput(input)(result) {
|
|
println@Console(input)();
|
|
result = "success"
|
|
}
|
|
}
|
|
|