[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / compiler / parser / list.ugn
1 %{
2 #include "hspincl.h"
3 %}
4 %{{
5 module U_list where
6
7 #include "HsVersions.h"
8
9 import UgenUtil
10 %}}
11 type list;
12         lcons   : < lhd : VOID_STAR;
13                     ltl : list; >;
14         lnil    : <>;
15 end;