home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / tmpas / test.ds < prev    next >
Encoding:
Text File  |  1990-10-02  |  293 b   |  13 lines

  1. || datastructure to test Miranda functions.
  2. || Note that Pascal type names are used.
  3. plot ::=
  4. ||    TestString s:string |
  5.     TestBool b:boolean |
  6.     TestChar c:char |
  7.     TestNum n:real |
  8.     TestInt i:integer |
  9.     TestList l:[plot] |
  10.     TestTuple t:xypoint;
  11.  
  12. xypoint == (x:real, y:real);
  13.