Added some explanation for the project to the README.
[vvhitespace] / README.md
index a1e2d3e..28090b8 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,13 +4,18 @@ Welcome to VVhitespace!
 
 If you are impatient to get started, simply execute `make` in the top-level
 directory to build the compiler and interpreter, then move to one of the
 
 If you are impatient to get started, simply execute `make` in the top-level
 directory to build the compiler and interpreter, then move to one of the
-example directories like `examples/wumpus` and execute `make run`.
+example directories like `examples/hunt-the-wumpus` and execute `make run`.
 
 VVhitespace is descended from Whitespace, adding a vertical tab to the language
 along with some restrictions to ease implementation. VVhitespace code is
 represented with the *whitespace characters* `[Tab]`, `[VTab]`, `[Space]`, and
 `[Newline]`. All other characters are considered commentary.
 
 
 VVhitespace is descended from Whitespace, adding a vertical tab to the language
 along with some restrictions to ease implementation. VVhitespace code is
 represented with the *whitespace characters* `[Tab]`, `[VTab]`, `[Space]`, and
 `[Newline]`. All other characters are considered commentary.
 
+VVhitespace makes a number of small changes to Whitespace with the intention of
+*taming* it by providing the tools necessary in order to make non-trivial
+whitespace-only applications. As proof of concept, I wrote an implementation of
+Hunt the Wumpus in VVhitespace.
+
 This repository includes several distinct parts:
 
   - A compiler, `vvc`, accepts human-readable VVhitespace source code and
 This repository includes several distinct parts:
 
   - A compiler, `vvc`, accepts human-readable VVhitespace source code and