An example LHS

> {-# LANGUAGE OverloadedStrings #-}

> module TLHS where

More comments, here.

> -- | >>> 2+2
> -- 4

> -- | >>> x+a
> -- 14

> {- |
> >>> 5+5
> WAS 11
> NOW 10
> -}
> x :: Integer
> x = 3

> a :: Integer
> a = 11