home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example2.s < prev    next >
Encoding:
Text File  |  1993-09-04  |  220 b   |  11 lines

  1. relation example2
  2.  
  3. field item  type char * 40;  # Description of an item in a store's inventory
  4. field val   type long;       # Number of 'em that are in stock
  5.  
  6. index ix_item on item without dups;
  7.  
  8. typedef example2;
  9.  
  10. end
  11.