aboutsummaryrefslogtreecommitdiff
path: root/running.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-05-13 18:19:25 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-05-13 18:19:25 -0400
commit202568257c0efda6aa2509f4f3eb9f815e87e018 (patch)
treec0dad6b8900653601a828eaea5f59e096d121f83 /running.md
parent365e8de6287fce6af6b6e1975ebde25aac027f5a (diff)
Remove references to namespaces not being implemented
Diffstat (limited to 'running.md')
-rw-r--r--running.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/running.md b/running.md
index a09ce488..9e00e060 100644
--- a/running.md
+++ b/running.md
@@ -8,7 +8,7 @@ There are currently two active BQN implementations: the self-hosted one in this
The online REPL is [here](https://mlochbaum.github.io/BQN/try.html). The file [docs/bqn.js](docs/bqn.js) is zero-dependency Javascript, and can be loaded from HTML or Node.js. For command line use, call the Node.js script [bqn.js](bqn.js), passing a file and `•args`, or `-e` to execute all remaining arguments directly and print the results. [This notebook](https://observablehq.com/@lsh/bqn) shows how to run it in an Observable notebook.
-Fully supports all primitives except a few cases of structural Under (`⌾`), but still missing some advanced features: namespaces, block headers and multiple body syntax, derived 1-modifiers, and block returns.
+Fully supports all primitives except a few cases of structural Under (`⌾`), but still missing some advanced features: block headers and multiple body syntax, derived 1-modifiers, and block returns.
This version of BQN is [implemented](implementation/README.md) mainly in BQN itself, but a host language supplies basic functionality and can also replace primitives for better performance. This also allows [embedding](doc/embed.md), where programs in the host language can include BQN code. Support in the following languages has been implemented:
- Javascript; see above. Slow (compiles at ~5kB/s) but usable.