haskell test case

This commit is contained in:
Bob Long 2015-10-29 19:41:57 +00:00
parent c4b795bb0b
commit 5d575a7a5c
3 changed files with 24 additions and 0 deletions

View File

@ -53,3 +53,7 @@ before_install:
- brew gist-logs php-cs-fixer || true
# CoffeeScript
- npm install coffee-formatter
# Haskell
- brew install haskell-stack
- stack setup
- stack install stylish-haskell

View File

@ -0,0 +1,10 @@
{-# LANGUAGE Wat #-}
import Bar
import Foo
import qualified Baz as Bang
data Person = Person {
name :: String,
address :: String
}

View File

@ -0,0 +1,10 @@
{-# LANGUAGE Wat #-}
import Foo
import Bar
import qualified Baz as Bang
data Person = Person {
name :: String,
address :: String
}