aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md25
1 files changed, 23 insertions, 2 deletions
diff --git a/README.md b/README.md
index eb14c7e..34deb2d 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,30 @@
Elymas
======
-*Just because I'm not following the true path, doesn't mean I can't get it to work*
+*Just because I'm not following the true path, doesn't mean I can't get it to work.*
+
+A programming language...
1 dump
- > 0000000000000001
+ # 0000000000000001
+
+... stack based programming language ...
+
+ 1 2 add dump
+ # 0000000000000003
+
+... with array support ...
+
+ [ 1 2 ] dump
+ # [
+ # 0000000000000001
+ # 0000000000000002
+ # ]
+... did I mention array support ...
+ 2 [ 1 2 ] add dump
+ # [
+ # 0000000000000003
+ # 0000000000000004
+ # ]