home *** CD-ROM | disk | FTP | other *** search
-
- node_type = (cons_node,func,variable,constant) ;
- node_ptr = ^node ;
- node = RECORD
- CASE tag : node_type OF
- cons_node : (tail_ptr : node_ptr ;
- head_ptr : node_ptr) ;
- func,
- constant,
- variable : (string_data : string80) ;
- END ;
-
-
- Figure 2 - Record description for a node