#!/usr/bin/boiler -i
{

void error()
{
 if (error) { printf("lib-error: "+perror+"\n"); };
 return;
}

/* asynchronous requests with TCP */
long clnt=clnt_create("localhost",576871000,1,"tcp");
if (clnt==-1) { error(); exit(); };

void print external(clnt,"print","geheim")

print("Hello World\n");

clnt_destroy(clnt);
}
