commit 774fe39af0eaa1cefb26ec327b66bd839dbe8b17
parent 0fd7d0d9e22a73b0e3c3cc71ce6af62718d51fb7
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 25 Oct 2017 21:07:14 -0700
readme: updates
Diffstat:
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -1,7 +1,7 @@
 
 # btcs
 
-  bitcoin script toolbox
+  bitcoin script parser/evaluator/compiler/decompiler
 
 ## Motivation
 
@@ -16,7 +16,15 @@
 
 ## Usage
 
-  Just started this project. You can already tokenize BIP examples though!
+  Work in progress. Some OPs are working:
+
+```
+./btcs <<< '1 2 16 3dup 2swap'
+script: 1 2 16 3DUP 2SWAP 
+stack:  1 2 2 16 16 1
+```
+
+  It should tokenize everything at least, even BIP examples! syntax might change ;)
 
 ```
 ./btcs <<EOS
@@ -33,7 +41,7 @@ ENDIF
 EOS
 ```
 
-spits out
+  spits out
 
 ```
 IF