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