1{-# LANGUAGE NoImplicitPrelude #-}
2
3module TNoImplicitPrelude where
4
5import Data.List (unwords)
6import Data.String (String)
7
8-- >>> unwords example
9example :: [String]
10example = ["This","is","an","example","of","evaluation"]
11