vote up 5 vote down star
2

When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language",

This language was interpretive and was especially useful for array and matrix operations with powerful operators and library functions to help with that.

Did you use APL? Is this language still in use anywhere? Is it still available, either commercially or open source?

flag

1  
The tag "functional-programming" doesn't suit this language. Just because a language has functions doesn't mean it's a functional language. The tag "numerical-computing" is a stretch. Just because matrices contain numbers doesn't mean the language has tools for precisions and error estimates. – Windows programmer Feb 5 at 4:41

22 Answers

vote up 1 vote down check

The link below is a to an 8-minute video implementing Conway's "Game of Life" -- including a live-running display -- using Dyalog APL. If nothing else, it should show that the comment questioning the "functional-programming" tag was way off base.

http://www.youtube.com/watch?v=a9xAKttWgP4

link|flag
This video is superb! It shows APL off in all its glory and will give even those who've never heard of APL before, an understanding of its power and how exotic it is. A must see!! I wish I could give you 10 upvotes for pointing it out. ++++++++++1 – lkessler Nov 20 at 5:26
vote up 1 vote down

My first paid gig was developing "expert systems" derived from mathematic model in APL which was actually a pretty fit. I was hooked after encountering a one-liner to solve Rubik's cube!

I don't regret spending almost a year of my life hacking APL because programming in a radically different way, learning strange symbols, thinking in terms of matrix manipulation, using right to left precedence, blurring of programs and data, workspace persistence, really changes how you think, even when faced with "modern" block oriented languages.

Having come across a few APL videos recently, I'm finding the APL Wiki a good place to rediscover what always was a fun tool. At worst you could think of it as "Brain Training" for coders.

link|flag
You got me curious, and I was able to find the Rubik's Cube solution in APL here: nyx.net/~anon84c2 - They didn't implement it as a one-liner and did make it semi-understandable (so un-APL-ish), but you get the idea. – lkessler Nov 18 at 23:15
vote up 1 vote down

Boy this brings back memories! Does anyone rember the book **APL, an Interactive Approach ** by Leonard Gilman and Allen J. Rose?

I used to work for STSC in White Plains, NY. I was interviewed by Allen Rose, who was a great guy. When I went for the interview I did not know APL. The interview consisted of questions like "If I told you this operator did this and that operator did that, what would be the result of this line of code?"

Anyway if memory serves me he hired me on the spot. Before that I had been a COBOL programmer, so it was quite a change. Those were the good old days when they were more interested in if you could think than what you knew about programming. They knew they could always teach you a new language, but it's hard to teach someone to think.

ANd the ideomatic expressions! Do you rember using the 1 (take) of the 0 (reshape) of a variable? That was how you determined if a variable contained a string or a number.

link|flag
I used your APL for DOS circa 1993; learned through the book "APL is Easy!" I once had all the weird features down pat; most have been eaten by senility^H^H^H^H^H^H^H^H memory entropy. – JCCyC Jun 24 at 17:25
vote up 0 vote down

Click here to obtain a free evaluation copy of VisualAPL for Visual Studio 2008.

Click here to learn about the immediate-mode, interactive "Cielo Explorer" session included with VisualAPL in which you can use C# [and VisualAPL if you like array-based programming] to explore the .Net Framework. With the "Cielo Explorer", you don't have to build a Console Project to see results right away.

link|flag
vote up 0 vote down

www.apl2000.com has details of APL+Win & Visual APL (www.aplnext.com)

Visual APL is a C# peer language, works with Visual Studio 2008 as its IDE.

link|flag
vote up 1 vote down

We are still using APL. APL2000 has created a full .NET implementation of APL. I Love the language. We use the APL2000 APL+Win product. There is also a Mac implementation from MicroAPL.

link|flag
vote up 3 vote down

Is this language still in use anywhere?

Yes, it's used by e.g. SimCorp, "a provider of highly specialised software for leading fund and investment management companies, pension funds, banks and insurance companies".

It's also, like Peter says here, used by Profdoc to create the electronic health record system used in almost all of Stockholm, Sweden (including the renowned Karolinska University Hospital). And I'm in fact one of the developers of this system as of today.

Is it still available, either commercially or open source?

Dyalog Ltd offers a commercial APL implementation (Dyalog APL) for Windows, Linux and other platforms. It includes some "modern" features such as Unicode, object orientation and .NET.

link|flag
vote up 2 vote down

I really enjoyed APL, back in the far when. It is super high level. At best it treats arrays as objects, not as sequences, giving a view "orthogonal" to the usual one, and lets operators work globally on a whole structure at once. This is a great aid to conceptualization.

So one use of APL was to breadboard a complex numerical or array-manipulating application. The brevity of the code was a real advantage, since an app that would take several pages of ordinary code would often condense to a few lines of APL, and give you new ideas as well. Examples:

  • determine whether a string is a pangram (contains all letters of the alphabet). In APL this takes just 5 symbols.

  • solve the Wonderword puzzle, familiar from daily newspapers. In APL, no more than a dozen lines, as I recall.

One pastime of APL programmers at the time was "one-liners," programs that solved a whole problem in one line of code. Of course this is just playing around, but the range of problems that could be handled this way was amazing.

Thanks to Charlie Martin for mentioning A+, which looks very much like a modern implementation of APL.

link|flag
vote up 2 vote down

See dYALOG APL Used in life critical Hospital information systems (TakeCare) at Karolinska university hospital + many more companies...

link|flag
vote up 1 vote down

For the open source version of GNU APL2 see here

link|flag
vote up 5 vote down

APL was brilliant for the technology of the time. At that time, both serial bandwidth and memory space was extremely tight. Most terminals output to paper, not to video monitors. Baudrates were 75, 110 and 300. An APL workspace was 32K on the System\360, and the one we had at my JC supported 80 online APL terminals. Every character sent or stored cost precious space and/or bandwidth and/or paper, so the fact that the language was a terse set of symbols was what made it so effective in that environment.

It was the first language I ever learned, and I still love it. I have a version I wrote for the PC that even emulates the overstriking of the keystrokes, as that made the keyboard simple (otherwise you have zillions of combination symbols all over the place). It's an anachronism now, but it has a soft spot in my heart. I still use it for doing desk-calculator type operations on my computer. I wish I could get a real 2741 terminal with APL keyboard to restore and hook up to it but they are now very rare beasts (and heavy monsters too). Oh well, fond memories.

Some still think that APL was ahead if its time, but I'm afraid they misunderstand much of what made it truly great in its heyday.

There has been an attempt to bring the language up to date with the language "J" which isn't dependent on the special symbols (which IMHO, was a large part of what APL had going for it). The result is a language even more unreadable than APL. The language R may be the current future of matrix languages, though I'm sure that's a controversial subject. J and R are free though, and there are some APLs out there, most are not good projects for the uninitiated, as unless you understand the original intents and contexts its hard to use an old APL executable and understand what's going on with it...

link|flag
vote up 4 vote down

From: If programming languages were religions...

APL would be Scientology - There are many people who claim to follow it, but you've always suspected that it's a huge and elaborate prank that got out of control.

link|flag
vote up 3 vote down

Yes, Bubba. Thanks for reminding me. I loved that keyboard. Especially the greek letters over AWER (that rho was so powerful!) and the Z through N set operations. although I forget now what the ones over the B and N mean't. Keyboard Diagram

link|flag
I first saw APL in high school on a 370. A guy at the computer club actually bought a daisy wheel for a terminal. Problem we couldn't save, a faculty member made suggestions to us how to get around this. Unfortunately we couldn't get our faculty to ask the school board. My answer: punch cards. – BubbaT Nov 25 '08 at 13:04
Fortunately, we just got brand new punch card machines. Real cool ones from IBM, they would hold the typed characters in memory, not punching till you pressed return. So you could backup and make corrections. The character positions was displayed on a two digit LED display. – BubbaT Nov 25 '08 at 13:07
Ok. I'm lighting a candle and waving my arms around, trying to dissipate the smell of ancient flatulence. – BubbaT Nov 25 '08 at 13:08
The B and N symboils look like bottom and top to me - en.wikipedia.org/wiki/Bottom_type – Mark Pim Apr 21 at 8:40
vote up 2 vote down

People couldn't convince keyboard makers to adopt it.

link|flag
See my Keyboard post in response (since pictures can't display in comments) – lkessler Nov 25 '08 at 4:18
You don't need a special keyboard to write APL. I'm using a standard Windows 104-keys keyboard, and it works excellent. Just press Ctrl+i for the "iota" e.g. – Christian Davén Mar 30 at 10:49
vote up 1 vote down

It was fun, but treated too much like an academic exercise.

link|flag
That's funny you should say that. My first experience with it was a Computer Science course at University. One of the keener students claimed he could write any program in just one line of APL, although it might be a very long line. – lkessler Nov 21 '08 at 0:50
That's its problem. If you understand APL, you can write one liners that are incredible, but just try to document what/how it's doing for someone else, especially someone with lesser APL skills. – jsfain Nov 21 '08 at 14:39
I did one combinatorics assignment that took me an hour to code in APL. It took 30 minutes of execution time on the IBM mainframe to get to its solution. Other students took a week of their time to write it in PL/I. It took the computer 30 seconds to execute that. Gotta love the tradeoff!!!! – lkessler Nov 25 '08 at 6:14
Yes, yes I do love that tradeoff. So, I think would most people for the majority of tasks. – Marcin Nov 27 '08 at 16:00
vote up 3 vote down

I used to write APL apps, back at the dawn of time.

Look into the A+ language, invented and used at Morgan-Stanley for financial applicaitons.

link|flag
Never heard of that one before. The history of it is very interesting. – lkessler Nov 11 '08 at 23:10
Great tidbit. I used to work on Wall Street and knew Joel Kaplan. I wonder where he is today? – JonnyBoats May 7 at 2:10
Jonny, I swear I've heard the name recently, but can't place it. MIght be at kx Systems. kx.com – Charlie Martin May 7 at 4:40
vote up 14 vote down

This popular poem should give you an idea of why APL is not popular anymore:

'Tis the dream of each programmer
Before his life is done,
To write three lines of APL
And make the damn thing run.
link|flag
Thank you. I enjoyed that. – lkessler Nov 11 '08 at 23:08
vote up 0 vote down

Gtani's answer led me to find info about APL2.

That led me to find that ACM has a SIGAPL group and they still have APL conferences.

IBM has workstation versions of APL2 but does not list the price of their APL2 product, possibly meaning its too expensive for you and me.

Is there a freeware or open source version available?

link|flag
vote up 0 vote down

Insurance actuaries are fond of it because it is well matched to their problem domain.

link|flag
vote up 0 vote down

i used APL2 on some monstrous IBM mainframes, it's still out there:

http://www-01.ibm.com/software/awdtools/apl/

the other implementation, STSC, seems to have gone invisible in google..

link|flag
vote up 11 vote down

It was "reimplemented" without all the special symbols as J:

http://www.jsoftware.com

If you specifically want APL IBM has an implementation (registration required). The link I have is:

http://www14.software.ibm.com/webapp/download/preconfig.jsp?id=2007-05-01+08:49:37.264028R&cat=&fam=&s=z&S_TACT=104AH%20W42&S_CMP=&st=1&sp=20

(if that is broken search for "APL download" on http://www.ibm.com/us/en/)

link|flag
it's also worth looking at the wikipedia entry for J. en.wikipedia.org/wiki/J_(programming_language/…) – Knox Nov 6 '08 at 14:40
Sorry. I had to take away your "correct" answer. That You Tube video is just too good!! – lkessler Nov 20 at 5:24
No problem - I'm entirely with you on that :-) – tonys Nov 23 at 6:11
vote up 2 vote down

I haven't thought about this in a while!

http://en.wikipedia.org/wiki/APL_(programming_language)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.