aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben.burwell@trifecta.com>2016-09-14 12:45:49 -0400
committerBen Burwell <ben.burwell@trifecta.com>2016-09-14 12:45:49 -0400
commita0627618a841cd0b2c91fccc4edf5548e08a09ef (patch)
tree7ea70e94c5a44ea1ad72c6405bf4947a979d4f9e
parente73c3d8f4088a2dca15069fc823601664ea8024c (diff)
Add examples to readme
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4902927..f3d15e5 100644
--- a/README.md
+++ b/README.md
@@ -10,3 +10,8 @@ After cloning the repository, open up any of the files found in the `prog` direc
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.
+## Online Example
+
+* [Euclidean Algorithm](https://cdn.rawgit.com/benburwell/doml/master/prog/euclideanAlgorithm.html)
+* [Simple `While` Loop](https://cdn.rawgit.com/benburwell/doml/master/prog/simpleWhileLoop.html)
+