adambard / learnxinyminutes-docs

Code documentation written as code! How novel and totally my idea!
https://learnxinyminutes.com/
Other
11.55k stars 3.36k forks source link

[Request] [language/lang-code] APL #3580

Open XVilka opened 5 years ago

XVilka commented 5 years ago

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:

life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵}
abrudz commented 5 years ago

There's a fork which has it: https://github.com/nooodl/learnxinyminutes-docs/blob/master/apl.apl

XVilka commented 5 years ago

It's a bit too short.