2009-02-06 14:28:49 +00:00
|
|
|
include "console.iol"
|
|
|
|
|
|
|
|
inputPort PrinterService {
|
2009-02-08 21:12:45 +00:00
|
|
|
Location: "local"
|
2009-02-06 14:28:49 +00:00
|
|
|
Protocol: sodep
|
|
|
|
RequestResponse:
|
|
|
|
printInput
|
|
|
|
}
|
|
|
|
|
|
|
|
main
|
|
|
|
{
|
2009-02-07 16:27:59 +00:00
|
|
|
printInput(input)(result) {
|
|
|
|
println@Console(input)();
|
|
|
|
result = "success"
|
2009-02-06 14:28:49 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-07 16:27:59 +00:00
|
|
|
|