aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3b7183c..98c2b0a 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,12 @@
-# ocaml-playground
-Ocaml playground
+# Ocaml playground
+
+My little OCaml projects. IMHO OCaml is great for manipulating recursive data
+structures, thus I'd like to get the hang of writing small programs fast.
+
+## regex.ml
+DFA to regex converter.
+TODO:
+- Reduce regexes that are concatenated with the empty regex
+- Expand the string_of_regex function, for example omit parenthesis around
+ concatenated letters
+- Make some automaton parser \ No newline at end of file