File tree Expand file tree Collapse file tree 5 files changed +54
-0
lines changed
Expand file tree Collapse file tree 5 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ # Build files/directories
2+ .stack-work /
3+ dist /
4+ dist-newstyle * /
5+
6+ # Local GHC and Cabal related files
7+ .ghc.environment *
8+ cabal.project.local
9+
10+ # Temp files created by Vim/Neovim
11+ * .swp
12+ * .swo
13+ * ~
14+
15+ # Other
16+ .log
17+ _doctests /
Original file line number Diff line number Diff line change 1+ # Revision history for cabal-diff
2+
3+ ## 0.1.0.0 -- YYYY-mm-dd
4+
5+ * First version. Released on an unsuspecting world.
Original file line number Diff line number Diff line change 1+ module Main where
2+
3+ main :: IO ()
4+ main = putStrLn " Hello, Haskell!"
Original file line number Diff line number Diff line change 1+ import Distribution.Simple
2+ main = defaultMain
Original file line number Diff line number Diff line change 1+ cabal-version : >= 1.10
2+ -- Initial package description 'cabal-diff.cabal' generated by 'cabal
3+ -- init'. For further documentation, see
4+ -- http://haskell.org/cabal/users-guide/
5+
6+ name : cabal-diff
7+ version : 0.1.0.0
8+ -- synopsis:
9+ -- description:
10+ -- bug-reports:
11+ -- license:
12+ license-file : LICENSE
13+ author : adithyaov
14+ 15+ -- copyright:
16+ -- category:
17+ build-type : Simple
18+ extra-source-files : CHANGELOG.md
19+
20+ executable cabal-diff
21+ main-is : Main.hs
22+ -- other-modules:
23+ -- other-extensions:
24+ build-depends : base >= 4.14 && < 4.15
25+ -- hs-source-dirs:
26+ default-language : Haskell2010
You can’t perform that action at this time.
0 commit comments