From f4833673badfaa688df7e623c3387739a3ac32bb Mon Sep 17 00:00:00 2001 From: yoshuawuyts Date: Thu, 12 Jun 2014 02:26:05 +0200 Subject: [PATCH] Add README.md --- Makefile | 2 +- README.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/Makefile b/Makefile index bb119cc..6159004 100644 --- a/Makefile +++ b/Makefile @@ -3,4 +3,4 @@ all: clean clean: - find . -type f -not -name '*.hs' -not -name 'Makefile' -not -path './.git/*' | xargs rm -f + find . -type f -not -name '*.hs' -not -name 'Makefile' -not -name 'README.md' -not -path './.git/*' | xargs rm -f diff --git a/README.md b/README.md new file mode 100644 index 0000000..9e8f4ee --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# 99 Haskell +Solving 99 problems in Haskell. + +## References +- [99 haskell problems](http://www.haskell.org/haskellwiki/99_questions) +- [LYaHFGG](http://learnyouahaskell.com/chapters) +- [Learn Haskell in Y minutes](http://learnxinyminutes.com/docs/haskell/) + +## License +MIT \ No newline at end of file