summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2022-02-17 19:14:57 +0530
committerAkshay Nair <phenax5@gmail.com>2022-02-17 19:14:57 +0530
commit79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0 (patch)
treef1e0629c8d80d1e281d1e48c853d3550ac07cc6b /README.md
parentdd3688f166d660df36a6ffda9fda755877ed2665 (diff)
downloadelxr-79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0.tar.gz
elxr-79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0.zip
chore: changes project name
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index aaf9190..2380be8 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# ListExp [ WIP ]
+# Elxr (List expressions)
-Regular expression-like syntax for list operations. Toy project experimenting with generalizing regex-like operations to a list.
+Regular expression-like syntax for list operations. An experiment generalizing regex-like operations to a list.
[![forthebadge](https://forthebadge.com/images/badges/you-didnt-ask-for-this.svg)](https://forthebadge.com)
[![forthebadge](https://forthebadge.com/images/badges/kinda-sfw.svg)](https://forthebadge.com)
@@ -13,6 +13,8 @@ Whitespaces are ignored (except within literals)
* `\s` => Any **string**
* `\n` => Any **number**
* `\b` => Any **boolean**
+* `\o` => Any **object** (has to be a record) [TODO]
+* `\a` => Any **array** [TODO]
* `\T` => Any **truthy** value
* `\F` => Any **falsey** value
* `a|b` => match `a` **or** `b`