packages feed

lhs2tex-1.12: doc/InteractiveHugsIn.lhs

%include verbatim.fmt

\begingroup
\let\origtt=\tt
\def\tt#1{\origtt}
%if False
module InteractiveHugs where
%endif
%format . = "."
%format forall a = "\forall" a

\begin{code}
%options hugs -98

> fix    ::  forall a. (a -> a) -> a
> fix f  =   f (fix f)

This function is of type \eval{:t fix},
and |take 10 (fix ('x':))| 
evaluates to \eval{take 10 (fix ('x':))}.
\end{code}
\endgroup