add
This commit is contained in:
parent
d0e82d0b92
commit
c67521741a
4 changed files with 28 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
*.o
|
||||
*.hi
|
||||
*.ho
|
||||
*.a
|
||||
git-annex
|
7
Makefile
Normal file
7
Makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
git-annex:
|
||||
ghc --make git-annex
|
||||
|
||||
clean:
|
||||
rm -f git-annex *.o *.hi *.ho *.a
|
||||
|
||||
.PHONY: git-annex
|
8
demo.log
Normal file
8
demo.log
Normal file
|
@ -0,0 +1,8 @@
|
|||
1286654242 1 repo
|
||||
1286652724 0 foo
|
||||
a a a
|
||||
a 1 a
|
||||
-1 a a
|
||||
1286652724 1 foo
|
||||
1286656282 1 foo
|
||||
1286656282 0 repo
|
8
git-annex.hs
Normal file
8
git-annex.hs
Normal file
|
@ -0,0 +1,8 @@
|
|||
{- git-annex main program
|
||||
- -}
|
||||
|
||||
import LocationLog
|
||||
|
||||
main = do
|
||||
l <- readLog "demo.log"
|
||||
putStrLn "hi"
|
Loading…
Reference in a new issue