largo@homxb.UUCP (J.BAKER) (12/28/87)
/* A multi-tasking model of comp.sys.amiga and the subject of multi-tasking */
main() { /* flame.c */
not_again:
switch (fork()) {
case -1: perror("fork error"); break;
case 0: printf("Re: flame\n");execl("flame","flame",0); break;
default: goto not_again;
}
}
/* Season's Greetings */