aboutsummaryrefslogtreecommitdiff
path: root/running.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2020-10-14 16:01:03 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2020-10-14 16:01:03 -0400
commitfcd6f3feb1d12e4a1ec271e560ebe804f4ae5d68 (patch)
tree00e72a7d377a09949b863af280729fcf629daa2a /running.md
parent7c388daec05b65a810aae6917ae28a9c9b910254 (diff)
Move from •EX to •Import
Diffstat (limited to 'running.md')
-rw-r--r--running.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/running.md b/running.md
index e0fce133..0690ad6b 100644
--- a/running.md
+++ b/running.md
@@ -22,13 +22,13 @@ All versions have automated tests in the [test](test/) directory, with the self-
This repository contains a dzaima/BQN script `dzref` that fills in the gaps in primitive support using BQN implementations of primitives that are not yet up to spec ([reference implementations](spec/reference.bqn) of all primitives starting from a small set of pre-existing functions are part of BQN's specification).
-You can run `dzref` from ordinary dzaima/BQN using the `•EX` command; see for example [wcshim.bqn](wcshim.bqn). For testing, it is run as a Unix script, in which case it depends on an executable `dbqn` that runs dzaima/BQN on a file argument. I use the following script, using the path to a clone of dzaima/BQN for the jar file.
+You can run `dzref` from ordinary dzaima/BQN using the `•Import` command; see for example [wcshim.bqn](wcshim.bqn). For testing, it is run as a Unix script, in which case it depends on an executable `dbqn` that runs dzaima/BQN on a file argument. I use the following script, using the path to a clone of dzaima/BQN for the jar file.
#! /bin/bash
java -jar /path/to/dzaima/BQN/BQN.jar -f "$@"
-The left argument for `•EX` or the shell arguments can contain up to two arguments for the script. The first is a file to run, and the second is BQN code to be run after it.
+The left argument for `•Import` or the shell arguments can contain up to two arguments for the script. The first is a file to run, and the second is BQN code to be run after it.
### BQN2NGN