home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (c) 1986, 90 by Prolog Development Center
- */
-
- extprog()
- {
- char dummychar;
- char *Name;
-
- makewindow(1,7,7,"Hello there",5,5,15,60);
- write_string("\n\nIsn't it easy");
- readchar(&dummychar);
- write_string("\nEnter your name: ");
- readline(&Name);
- write_string("\nYour name is: ");
- write_string(Name);
- readchar(&dummychar);
- removewindow();
- }