aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Burwell <ben.burwell@trifecta.com>2016-09-14 14:56:14 -0400
committerBen Burwell <ben.burwell@trifecta.com>2016-09-14 14:56:14 -0400
commit7ce57c859ab914d65df9c659e1a6ef3fde79c63c (patch)
tree369333e87089337785b9c1d837eb5681cb4ec476 /README.md
parent318be9790fa3a3b9cfe36c2e5cc186f0e1666ec3 (diff)
Consolidate into a single library
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index f3d15e5..2e0534b 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ After cloning the repository, open up any of the files found in the `prog` direc
## About the language
-At this point, it is extremely simple and undocumented. All statements are executed in a global context, and are implemented in `./lib/statements.js`. Binary operators are implemented in `./lib/binops.js`. A rudimentary type system currently consisting of `string`, `number`, and `boolean` are mapped to native JavaScript types for evaluation.
+At this point, it is extremely simple and undocumented. All statements are executed in a global context. A rudimentary type system currently consisting of `string`, `number`, and `boolean` are mapped to native JavaScript types for evaluation.
## Online Example