APL.jl: Difference between revisions

Jump to navigation Jump to search
2,686 bytes added ,  15:05, 22 September 2022
no edit summary
(Created page with "This article needs to be populated from https://github.com/shashi/APL.jl")
 
No edit summary
(One intermediate revision by the same user not shown)
Line 1: Line 1:
This article needs to be populated from https://github.com/shashi/APL.jl
{{Infobox array language
| array model              = [[Julia]]
| index origin            = 1
| function styles          = [[dfn]]
| numeric types            = 64-bit int, 64-bit float
| unicode support          = none
| released                = 2016
| developer                = Shashi Gowda
| implementation languages = [[Julia]]
| license                  = [https://github.com/shashi/APL.jl/blob/master/LICENSE.md MIT "Expat" License]
| website                  = [https://github.com/shashi/APL.jl/blob/master/LICENSE.md github.com]
| download                = [https://github.com/shashi/APL.jl/archive/refs/heads/master.zip GitHub]
| influenced by            = [[Julia]]
| run online              = [https://nbviewer.org/gist/shashi/9ad9de91d1aa12f006c4 Jupyter notebook]
}}
 
'''APL.jl''' is a toy dialect of APL made for interfacing with the Julia language.
 
== Implementation ==
APL.jl works on a minor subset of APL that allows the compiler to parse and translate APL code into Julia code. Due to this, APl.jl always returns Julia data. Dfns defined using APl.jl can hence be used directly in Julia code like ordinary functions.
 
The <code>apl""</code> string macro parses and evaluates an APL expression. The parser works on the reverse of the APL code, using the help of concatenation rules to recognize the syntax of the expression.<ref>https://github.com/shashi/APL.jl#implementation-notes</ref>
 
APL.jl can be used from <code>apl""</code>, and as a REPL triggered with <code>/</code> from within the Julia REPL. It can be built and installed from source in the REPL using the <code>Pkg</code> library.
 
== Differences from APL ==
APL.jl is not recommended for use as a standard APL implementation due to being incomplete and non-portable. The following is a non-exhaustive list of differences from modern APL.
* Unicode symbols used are not from Miscellaneous Technical block, are instead borrowed from Julia's set<ref>https://docs.juliahub.com/CalculusWithJulia/AZHbv/0.0.5/misc/unicode.html</ref>
* Majority of basic primitives and overloads missing<ref>https://github.com/shashi/APL.jl/blob/master/src/defns.jl</ref>
* Treatment of scalars as 1-element vectors
* No method to create character arrays
* Monadic <code>∘</code> is redefined for broadcasting (each left), no support for binding arguments
* Absence of tradfns, dops, function trains
* Incorrect stranding for nested arrays (<code>(1 2) (3 4)≡1 2 3 4</code>)
* Lack of reshape for case where <code>(×/⍴⍵)≢×/⍺</code>
* Addition of getIndex function <code>]</code><ref>https://github.com/shashi/APL.jl/blob/master/src/defns.jl#L103</ref>
 
== External Links ==
* [https://www.youtube.com/watch?v=XVv1GipR5yU APL at Julia's Speed, JuliaConf 2016]
 
== References ==
trusted
69

edits

Navigation menu