haskell test case
This commit is contained in:
parent
c4b795bb0b
commit
5d575a7a5c
|
@ -53,3 +53,7 @@ before_install:
|
||||||
- brew gist-logs php-cs-fixer || true
|
- brew gist-logs php-cs-fixer || true
|
||||||
# CoffeeScript
|
# CoffeeScript
|
||||||
- npm install coffee-formatter
|
- npm install coffee-formatter
|
||||||
|
# Haskell
|
||||||
|
- brew install haskell-stack
|
||||||
|
- stack setup
|
||||||
|
- stack install stylish-haskell
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
{-# LANGUAGE Wat #-}
|
||||||
|
import Bar
|
||||||
|
import Foo
|
||||||
|
|
||||||
|
import qualified Baz as Bang
|
||||||
|
|
||||||
|
data Person = Person {
|
||||||
|
name :: String,
|
||||||
|
address :: String
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
{-# LANGUAGE Wat #-}
|
||||||
|
import Foo
|
||||||
|
import Bar
|
||||||
|
|
||||||
|
import qualified Baz as Bang
|
||||||
|
|
||||||
|
data Person = Person {
|
||||||
|
name :: String,
|
||||||
|
address :: String
|
||||||
|
}
|
Loading…
Reference in New Issue