adambard / adambard/learnxinyminutes-docs
[Request] [language/lang-code] APL
- 主要语言
- Markdown
- 星标
- 12.3k
- 派生
- 3.7k
- 平均合并
- 13 小时 10 分钟
- 30 天内合并 PR
- 6
描述
APL (named after the book A Programming Language) is a programming language developed in the 1960s by Kenneth E. Iverson. Its central datatype is the multidimensional array. It uses a large range of special graphic symbols to represent most functions and operators, leading to very concise code. It has been an important influence on the development of concept modeling, spreadsheets, functional programming, and computer math packages. It has also inspired several other programming languages.
See "Game of Life" program example in APL:
```apl
life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵}
```
- [Introduction to APL](http://www.softwarepreservation.org/projects/apl/Books/AnIntroductionToAPL)
- [Try APL online](https://tryapl.org/)
贡献指南
调研方向
Start by reviewing existing language documentation in the repository to learn the expected structure and level of detail. Use the APL introduction, online interpreter, and Game of Life example from the issue as references; done means adding a complete APL page that follows the repository’s conventions and includes accurate, runnable examples.
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- markdown
- 领域
- documentation
- Issue 类型
- 文档
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100