Skip to content

Commit 4bf80f2

Browse files
committed
Initial commit
0 parents  commit 4bf80f2

File tree

5 files changed

+54
-0
lines changed

5 files changed

+54
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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/

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Revision history for cabal-diff
2+
3+
## 0.1.0.0 -- YYYY-mm-dd
4+
5+
* First version. Released on an unsuspecting world.

Main.hs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module Main where
2+
3+
main :: IO ()
4+
main = putStrLn "Hello, Haskell!"

Setup.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain

cabal-diff.cabal

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
maintainer: [email protected]
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

0 commit comments

Comments
 (0)