This commit is contained in:
Joey Hess 2010-10-10 00:18:16 -04:00
parent d0e82d0b92
commit c67521741a
4 changed files with 28 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
*.o
*.hi
*.ho
*.a
git-annex

7
Makefile Normal file
View 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
View 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
View file

@ -0,0 +1,8 @@
{- git-annex main program
- -}
import LocationLog
main = do
l <- readLog "demo.log"
putStrLn "hi"