aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2013-09-29 23:13:59 +0200
committerDrahflow <drahflow@gmx.de>2013-09-29 23:13:59 +0200
commitc5e673e53ae016e32101039242fa1855733e3a35 (patch)
treeb2212867a08cf2cc0a35a8b123e7bf88b61e7746 /README.md
parent4e92640b91914115ee7afec6435b2a4c5e51a148 (diff)
Further testing...
Diffstat (limited to 'README.md')
-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
+ # ]