Advertisement
Guest User

Untitled

a guest
May 1st, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. #!/usr/bin/env stack
  2. {-
  3. stack
  4. --resolver lts-8.12
  5. --compiler ghc-8.0.2
  6. --install-ghc
  7. runghc
  8. --package turtle
  9. --package spiros
  10.  
  11. -}
  12.  
  13. {-# LANGUAGE NoImplicitPrelude, NoMonomorphismRestriction #-}
  14. {-# LANGUAGE AutoDeriveTypeable, DeriveDataTypeable, DeriveGeneric,
  15. DeriveFunctor, DeriveFoldable, DeriveTraversable,
  16. StandaloneDeriving #-}
  17. {-# LANGUAGE LambdaCase, EmptyCase, TypeOperators, PostfixOperators,
  18. ViewPatterns, BangPatterns,
  19. OverloadedStrings, OverloadedLists,
  20. NamedFieldPuns, RecordWildCards, TupleSections,
  21. MultiWayIf, DoAndIfThenElse, EmptyDataDecls #-}
  22. {-# LANGUAGE MultiParamTypeClasses, FlexibleContexts, FlexibleInstances,
  23. TypeFamilies, FunctionalDependencies,
  24. ScopedTypeVariables #-}
  25. {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
  26.  
  27. import Prelude.Spiros
  28. import Turtle
  29.  
  30. main = do
  31. print "hi"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement