this post was submitted on 01 Jun 2024
5 points (100.0% liked)

APL - A Programming Language

36 readers
1 users here now

A community for those who want to learn and use the APL array programming language. The most current and maintained open-source variant being: GNU APL

This community leans toward the POSIX APL/2 standard; APL has many newer dialects which, while powerful and innovative, are not available as open implementations and may not be officially considered standard APL, per se.

Those who wish to discuss tacit programming and other syntax constructs outside and beyond that of the APL/2 standard may wish to visit the Dyalog corporation's own website, forums and documentation as their commercial variant diverges from that of APL/2; or the APL Orchard on StackExchange.

That said, however, talk of 'child' languages such as: J, K, Q, BQN and so on are by no means discouraged!


APL Keyboard Overlays


APL Keyboard Setup for Linux


To obtain the latest GNU APL source code to build:

svn checkout http://svn.savannah.gnu.org/svn/apl/trunk

founded 3 months ago
MODERATORS
 

GNU APL is easy to build on your own Linux machine, though the steps aren't detailed on the website.


Benefits of building yourself locally:

  • One can customize how many cores GNU APL has access to
  • Customizing optional extensions like PNG image, SQLite, GTK support etc.
  • Having the latest bugfixes

  1. Obtain the latest source

  2. Configure using autotools

    • cd trunk
    • make clean
    • ./configure CORE_COUNT_WANTED=3 RATIONAL_NUMBERS_WANTED=yes --with-ctrld_del

    Use ./configure --help to see other options, adjust to taste

  3. Build and install

    • make -j && sudo make install
  4. Set up your default workspace

    • cd ~
    • mkdir -p GNUAPL/workspaces

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here