哪里可以学习APL?

发布于 2024-07-19 12:05:30 字数 1542 浏览 6 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

你列表最软的妹 2024-07-26 12:05:30

http://aplwiki.com 上查找教程,

它提供了一个品尝器。 有了开源 APL NARS2000,您就不必花钱购买 APL 解释器。 要认真了解 APL,请选择 APLX 或 Dyalog。

小心! 你很快就会上瘾——或者不会。

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.

冷月断魂刀 2024-07-26 12:05:30

用于下载所有扫描的 Python 脚本:

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)

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)
自我难过 2024-07-26 12:05:30

APL 的 K&R 书可能是 Gilman 和 Rose 所著的“交互式方法”,但 APL 维基

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文