Blob


1 #include "adventure.h"
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
7 int
8 main()
9 {
10 printf("Welcome to Little Cave Adventure.\n");
12 exec_look_around();
14 while (getinput() && parseexec(line))
15 ;
17 printf("\nBye!\n");
18 return 0;
19 }