Added Prelude imports to sources in benchmark and trypandoc.

This commit is contained in:
John MacFarlane 2018-03-18 11:45:25 -07:00
parent daef5530b4
commit 48f0e73c55
3 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,4 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE TupleSections #-}
{-
Copyright (C) 2012-2018 John MacFarlane <jgm@berkeley.edu>
@ -16,6 +17,7 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-}
import Prelude
import Text.Pandoc
import qualified Text.Pandoc.UTF8 as UTF8
import qualified Data.ByteString as B

View file

@ -1,3 +1,5 @@
{-# LANGUAGE NoImplicitPrelude #-}
import Prelude
import Weigh
import Text.Pandoc
import Data.Text (Text)

View file

@ -1,5 +1,7 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Prelude
import Network.Wai.Handler.CGI
import Network.Wai
import Control.Applicative ((<$>))