re-pp and re-include test file ============================== This is a psuedo-Haskell script used to test the re-pp (and it cut-down variant, re-include). Here we have a couple of single-line vanilla code fragment. \begin{code} {-# LANGUAGE QuasiQuotes #-} \end{code} \begin{code} {-# OPTIONS_GHC -fno-warn-missing-signatures #-} \end{code} And here is an empty one. \begin{code} \end{code} \begin{code} The top main stuff: A multi-line vanilla code fragment. \begin{code} import Control.Applicative import TestKit \end{code} An (self-)include directive
\begin{code} evalme_PPT_01 = checkThis "" (Just 0) $ length <$> Just [] \end{code}
A one-line evalme fragment.
\begin{code} length [] \end{code}
An evalme fragment spread over a couple of lines.
\begin{code} length <$> Just [] \end{code}
And the main bottom stuff.