up vote 4 down vote favorite
4
share [g+] share [fb]

I want to learn APL (more specifically Dyalog APL), but I can't seem to find any good sources to learn from.

The only source I could find was Dyalog's Documentation Downloads, but other than that, can anyone recommend a good source?

link|improve this question

80% accept rate
Just out of curiosity, why do you want to learn APL? What use do you have for it? I have never found a good reason to use it other than that you can create really short (although cryptic) code. – Zifre May 9 '09 at 19:39
2  
Dyalog Programming Contest 2009: dyalog.com/contest2009 – Ankit May 9 '09 at 20:38
feedback

5 Answers

up vote 6 down vote accepted

I found a scan of APL: An Interactive Approach.

link|improve this answer
This is a great, if dated, book to learn from. – JonnyBoats May 9 '09 at 19:31
Definitely dated, but the best source that I have found so far. – Ankit May 9 '09 at 20:37
Look no further you won't find a better source. I learned APL from the book about 30 years ago. I think it's not just a great book for learning APL from, but a great computing instruction text too. – High Performance Mark Nov 18 '09 at 11:08
feedback

Python script to download all the scans:

def download(url, filename):
     import urllib
     webfile = urllib.urlopen(url)
     file = open(filename, 'w')
     file.write(webfile.read())
     webfile.close()
     file.close()

for i in xrange(1, 390):
     download('http://scanserver.ulib.org/is/scanserver/book24/tiff/apli%.4d.tif?rs=1&br=0.0&rt=0' % i, 'apl%.4d.tif' % i)
link|improve this answer
feedback

Look for the tutorial on http://aplwiki.com

It offers a taster. With the Open Source APL NARS2000 you do not have to spend a buck on an APL interpreter. For getting seriously into APL, go for APLX or Dyalog.

Watch out! You will get addicted quite soon - or not.

link|improve this answer
feedback

The K&R book for APL is probably "An Interactive Approach" by Gilman and Rose but there are lots of other books, tutorials, exercises, puzzles, processors and links listed on the APL Wiki

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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