16 lines
241 B
C
16 lines
241 B
C
#include <command.h>
|
|
|
|
#ifdef __NO_ENVIRONMENT__
|
|
#define say(x) shout(x)
|
|
#endif
|
|
|
|
int
|
|
main(string arg)
|
|
{
|
|
write("Bye.\n");
|
|
say((string)previous_object()->query_name()
|
|
+ " leaves this reality.\n");
|
|
previous_object()->remove();
|
|
return 1;
|
|
}
|