home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************
- Turbo Prolog Toolbox
- (C) Copyright 1987 Borland International.
-
- DOMAIN DEFINITIONS
- ***********************************************************/
-
- DOMAINS
- EXP = plus(EXP,EXP);
- minus(EXP,EXP);
- mult(EXP,EXP);
- div(EXP,EXP);
- power(EXP,EXP);
- id(STRING);
- int(INTEGER)
-
-
- TOK = plus();
- minus();
- mult();
- div();
- power();
- id(STRING);
- int(INTEGER);
- nill
-