File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ import System.Environment
2
+
3
+ -- | 'main' runs the main program
4
+ main :: IO ()
5
+ main = print usage
6
+
7
+ usage = " diffr says hello"
Original file line number Diff line number Diff line change
1
+ Name : diffr
2
+ Version : 0.0
3
+ Description : Intelligent diff/patch tool that knows how to copy and move, has an 'r' at the end of its name.
4
+ License : GPL-3
5
+ License-file : LICENCE
6
+ Author : Amaury Couste, Jakub Kozlowski, William Martin
7
+ Maintainer :
8
+ Build-Type : Simple
9
+ Cabal-Version : >= 1.2
10
+
11
+ Executable diffr
12
+ Main-is : diff/Main.hs
13
+ Build-Depends : base
14
+
15
+ Executable patchr
16
+ Main-is : patch/Main.hs
17
+ Build-Depends : base
Original file line number Diff line number Diff line change
1
+ import System.Environment
2
+
3
+ -- | 'main' runs the main program
4
+ main :: IO ()
5
+ main = print usage
6
+
7
+ usage = " patchr says hello"
You can’t perform that action at this time.
0 commit comments