The APL Source Code (2012)
computerhistory.org
The APL Source Code (2012)
1–10 of 61 posts
Re: The APL Source Code (2012)
#2Re: The APL Source Code (2012)
#3Re: The APL Source Code (2012)
#4So the original Perl?
Re: The APL Source Code (2012)
#5We have to agree to these kinds of terms about something that is more than half a century old and has zero commercial value. Something in the copyright system is deeply broken.
Re: The APL Source Code (2012)
#6> But APL programs are often cryptic and hard to decode. Some have joked that it is a “write-only language” because even the author of a program might have trouble understanding it later. So the original Perl?
APL is a completely different paradigm.
Every now and then I get the urge to take a deep dive into APL or J but I really need a use case.
Since they are array languages they seem like they might be good for machine learning?
Re: The APL Source Code (2012)
#7> But APL programs are often cryptic and hard to decode. Some have joked that it is a “write-only language” because even the author of a program might have trouble understanding it later. So the original Perl?
[1] https://github.com/phantomics/aprilRe: The APL Source Code (2012)
#8> But APL programs are often cryptic and hard to decode. Some have joked that it is a “write-only language” because even the author of a program might have trouble understanding it later. So the original Perl?
Nope, not even close. I’ve written/read lots of Perl. APL is a completely different paradigm. Every now and then I get the urge to take a deep dive into APL or J but I really need a use case. Since they are array languages they seem like they might be good for machine learning?
Re: The APL Source Code (2012)
#9By the way, APL was the first language I learned, on the APL/360 system described here, using paper terminals.
Re: The APL Source Code (2012)
#10> But APL programs are often cryptic and hard to decode. Some have joked that it is a “write-only language” because even the author of a program might have trouble understanding it later. So the original Perl?
I actually find it way easier and shorter to review code I've written in J and APL, because it is so succinct and the symbols are well defined. Having to review something that is a paragraph or one page of code is much easier than following pages of other programming languages code. You can comment APL as you can in most PLs, and with the REPL-like dev environment, you can test pieces of code for verification quite i…