diff options
| author | Drahflow <drahflow@gmx.de> | 2013-09-29 23:13:59 +0200 |
|---|---|---|
| committer | Drahflow <drahflow@gmx.de> | 2013-09-29 23:13:59 +0200 |
| commit | c5e673e53ae016e32101039242fa1855733e3a35 (patch) | |
| tree | b2212867a08cf2cc0a35a8b123e7bf88b61e7746 /README.md | |
| parent | 4e92640b91914115ee7afec6435b2a4c5e51a148 (diff) | |
Further testing...
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -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 + # ] |
