#include <stdio.h>
#define _send(MSG, RCV, ...) ({ \
register oop _r= (RCV); \
struct __closure *_c= (struct __closure *)_libid->bind((MSG), _r); \
(_c->method)((oop)_c, _r, _r, __VA_ARGS__); \
})
int main(int argc, char **argv)
{
printf("hello\n");
return 0;
}