[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / yaccParser / list.ugn
1 %{
2 #include "hspincl.h"
3 %}
4 %{{
5 module U_list where
6 import UgenUtil
7 import Util
8 %}}
9 type list;
10         lcons   : < lhd : VOID_STAR;
11                     ltl : list; >;
12         lnil    : <>;
13 end;