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
<div class='includedcodeblock'>
\begin{code}
evalme_PPT_01 = checkThis "" (Just 0) $
  length <$>
    Just []
\end{code}
</div>



A one-line evalme fragment.
<div class="replcodeblock">
\begin{code}
  length []
\end{code}
</div>

An evalme fragment spread over a couple of lines.
<div class="replcodeblock">
\begin{code}
  length <$>
    Just []
\end{code}
</div>

And the main bottom stuff.