From 021f94db961334460e573ecde9192ea721cb1a18 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Mon, 14 Mar 2022 16:10:09 -0400 Subject: Miscellaneous changes; link to BQNPAD on REPL page --- README.md | 4 ++-- docs/index.html | 4 ++-- docs/running.html | 2 +- docs/try.html | 1 + running.md | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f1e8213f..dccb4ed4 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Looking for a modern, powerful language centered on Ken Iverson's array programm - A simple, consistent, and [stable](commentary/stability.md) array programming language - A low-dependency C implementation using bytecode compilation: [installation](running.md) -- Basic [system functions](spec/system.md) for common math, file, and IO operations +- [System functions](spec/system.md) for common math, file, and IO operations - Documentation with examples, visuals, explanations, and rationale for features - Replace or extend primitives to make a [BQN-like language](doc/rebqn.md) suited for specialized domains @@ -37,7 +37,7 @@ BQN **will provide**: - Interfaces to connect with other languages, like a C FFI and JSON and CSV tools - A standard system to install and use libraries and packages, and support for package managers -At present, I think BQN is a good choice for learning array programming, scripting, medium-scale number crunching, and recreational programming. For some examples of BQN in action, this repository holds the dreaded [self-hosted compiler](src/c.bqn) and the friendlier [markdown processor](md.bqn) used to generate the site. See also my scripts at [bqn-libs](https://github.com/mlochbaum/bqn-libs), this [gnuplot interface](https://github.com/frasiyav/BQN-Gnuplot/blob/main/Gnuplot.bqn), some nicely commented Advent of Code 2021 [solutions](https://gitlab.com/icen/aoc21), or something else from the [community](community/README.md) page. +At present, I think BQN is a good choice for learning array programming, scripting, medium-scale (fits in RAM) number crunching, and recreational programming. For some examples of BQN in action, this repository holds the dreaded [self-hosted compiler](src/c.bqn) and the friendlier [markdown processor](md.bqn) used to generate the site. See also my scripts at [bqn-libs](https://github.com/mlochbaum/bqn-libs), this [gnuplot interface](https://github.com/frasiyav/BQN-Gnuplot/blob/main/Gnuplot.bqn), examples on [RosettaCode](https://rosettacode.org/wiki/Category:BQN), or something else from the [community](community/README.md) page. ## What kind of name is "BQN"? diff --git a/docs/index.html b/docs/index.html index eda3046b..4e441a8f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -26,7 +26,7 @@ @@ -36,7 +36,7 @@
  • Interfaces to connect with other languages, like a C FFI and JSON and CSV tools
  • A standard system to install and use libraries and packages, and support for package managers
  • -

    At present, I think BQN is a good choice for learning array programming, scripting, medium-scale number crunching, and recreational programming. For some examples of BQN in action, this repository holds the dreaded self-hosted compiler and the friendlier markdown processor used to generate the site. See also my scripts at bqn-libs, this gnuplot interface, some nicely commented Advent of Code 2021 solutions, or something else from the community page.

    +

    At present, I think BQN is a good choice for learning array programming, scripting, medium-scale (fits in RAM) number crunching, and recreational programming. For some examples of BQN in action, this repository holds the dreaded self-hosted compiler and the friendlier markdown processor used to generate the site. See also my scripts at bqn-libs, this gnuplot interface, examples on RosettaCode, or something else from the community page.

    What kind of name is "BQN"?

    It's three letters, that happen to match the capitals in "Big Questions Notation". You can pronounce it "bacon", but are advised to avoid this unless there's puns.

    What's the language like?

    diff --git a/docs/running.html b/docs/running.html index b7cbe3f6..7fea2682 100644 --- a/docs/running.html +++ b/docs/running.html @@ -35,7 +35,7 @@

    genRuntime can also be run with another BQN implementation (the Node.js one works but takes up to a minute), and plain ./genRuntime uses your system's bqn executable. I symlink /CBQN/BQN to ~/bin/bqn so I can easily use CBQN for scripting.

    CBQN uses the self-hosted runtime to achieve full primitive coverage, and implements specific primitives or parts of primitives natively to speed them up. This means primitives with native support—including everything used by the compiler—are fairly fast while others are much slower.

    dzaima/BQN

    -

    dzaima/BQN is an implementation in Java created by modifying the existing dzaima/APL, and should be easy to run on desktop Linux and Android. It was historically the main implementation, but is now updated only to stay up to date with language changes. Major missing functionality is dyadic Depth () and set functions ⊐⊒∊⍷ with rank >1, and there are various small differences from the BQN spec, mostly to do with rank, handling of atoms, fills, and headers.

    +

    dzaima/BQN is an implementation in Java created by modifying the existing dzaima/APL, and should be easy to run on desktop Linux and Android. It was historically the main implementation, but is now updated only to stay up to date with language changes. Major missing functionality is dyadic Depth () and set functions ⊐⊒∊⍷ with rank >1, and there are various small differences from the BQN spec, mostly to do with rank, handling of atoms, fills, and headers. It uses UTF-16 instead of UTF-32, so that characters like 𝕩 don't behave correctly.

    To get an executable that works like CBQN, make a script with the following contents. Scripts may use #! /usr/bin/env dbqn to run with dzaima/BQN specifically, but this is rare now (in this repository, only test/dzaima does it).

    #! /bin/bash
     
    diff --git a/docs/try.html b/docs/try.html
    index 3fc040d4..c8b73770 100644
    --- a/docs/try.html
    +++ b/docs/try.html
    @@ -31,6 +31,7 @@
       

    Notes:

    diff --git a/running.md b/running.md index 976cac47..21a6e60e 100644 --- a/running.md +++ b/running.md @@ -42,7 +42,7 @@ CBQN uses the self-hosted runtime to achieve full primitive coverage, and implem ### dzaima/BQN -[dzaima/BQN](https://github.com/dzaima/BQN/) is an implementation in Java created by modifying the existing dzaima/APL, and should be easy to run on desktop Linux and Android. It was historically the main implementation, but is now updated only to stay up to date with language changes. Major missing functionality is dyadic Depth (`⚇`) and set functions `⊐⊒∊⍷` with rank >1, and there are various small differences from the BQN spec, mostly to do with rank, handling of atoms, fills, and headers. +[dzaima/BQN](https://github.com/dzaima/BQN/) is an implementation in Java created by modifying the existing dzaima/APL, and should be easy to run on desktop Linux and Android. It was historically the main implementation, but is now updated only to stay up to date with language changes. Major missing functionality is dyadic Depth (`⚇`) and set functions `⊐⊒∊⍷` with rank >1, and there are various small differences from the BQN spec, mostly to do with rank, handling of atoms, fills, and headers. It uses UTF-16 instead of UTF-32, so that characters like `𝕩` don't behave correctly. To get an executable that works like CBQN, make a script with the following contents. Scripts may use `#! /usr/bin/env dbqn` to run with dzaima/BQN specifically, but this is rare now (in this repository, only `test/dzaima` does it). -- cgit v1.2.3