26 lines
442 B
Haskell
26 lines
442 B
Haskell
-- brittany { lconfig_columnAlignMode: { tag: ColumnAlignModeDisabled }, lconfig_indentPolicy: IndentPolicyLeft }
|
|
{-# LANGUAGE BangPatterns #-}
|
|
{-
|
|
- Test module
|
|
-}
|
|
module Test
|
|
( test1
|
|
-- ^ test
|
|
, test2
|
|
-- | test
|
|
, test3
|
|
, test4
|
|
, test5
|
|
, test6
|
|
, test7
|
|
, test8
|
|
, test9
|
|
, test10
|
|
) where
|
|
-- Test
|
|
import Data.List (nub) -- Test
|
|
{- Test -}
|
|
import qualified Data.List as L (foldl') {- Test -}
|
|
-- Test
|
|
import Test (test)
|