Differences between revisions 1 and 15 (spanning 14 versions)
Revision 1 as of 2009-07-26 08:04:22
Size: 5212
Editor: KaiJaeger
Comment:
Revision 15 as of 2009-07-27 07:10:49
Size: 6026
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
'''''Please add comments and questions as "wiki comments" - see HelpOnComments for details. Note that !JavaScript needs to be enabled to take advantage of this feature.'''''
----
''Can I suggest that we ignore the above exhortation and make all comments visible. There really is no good reason to hide them and it's almost impossible to recognise that we're looking at the same page after hitting the edit button.'' -- PhilLast <<DateTime(2009-07-27T07:10:49Z)>>
----
Line 5: Line 9:
#!wiki comment  {{{#!wiki comment
Line 7: Line 11:
}}}
Line 12: Line 16:
APL is one of the oldest programming languages, and an important influence on the development of spreadsheets, functional programming[1], Mathematica and !MatLab[2]. It is a dynamic, interpreted language based on Iverson's mathematical notation. All data are arrays. Primitive operations all extend to arrays, and are denoted by distinctive graphic symbols rather than words, making APL programs compact and visually striking, with few or no loops. --(APL is one of the oldest programming languages, and an important influence on the development of spreadsheets, functional programming[1], Mathematica and !MatLab[2]. It is a dynamic, interpreted language based on Iverson's mathematical notation. All data are arrays. Primitive operations all extend to arrays, and are denoted by distinctive graphic symbols rather than words, making APL programs compact and visually striking, with few or no loops.)--
Line 16: Line 20:
#!wiki comment  {{{#!wiki comment
Line 26: Line 30:
}}}
Line 27: Line 32:
Interpreters are available for a wide range of platforms including PCs, Macs, Linux, mainframes and hand-held computers. Recent Notable extensions to APL interpreters and IDEs include: --(Interpreters are available for a wide range of platforms including PCs, Macs, Linux, mainframes and hand-held computers.--) Recent Notable extensions to APL interpreters and IDEs include:
Line 29: Line 34:
    *  . --(* anonymous lambdas)--
Line 31: Line 36:
      anonymous lambdas
    *
 * support for class/object programming and .Net assemblies<<BR>>
Line 34: Line 38:
      support for class/object programming and .Net assemblies<<BR>>

#!wiki comment
{{{#!wiki comment
Line 40: Line 42:
-- KaiJaeger <<DateTime(2009-07-26T08:07:09Z)>>
}}}
 * a version of APL, Visual APL, that is a native .NET language using Visual Studio 2008 as its IDE.
Line 41: Line 46:
    * a version of APL, Visual APL, that is a native language hosted by Visual Studio 2008. {{{#!wiki comment
Visual APL is so fundamentally different from others (I dare say: real!) APLs that it needs more details - or shouldn't be mentioned at all! -- KaiJaeger <<DateTime(2009-07-26T08:04:22Z)>>
}}}
 * ActiveX or COM Interrop support allowing APL to use Windows resources, notably the operating system's Shell, Win32 APIs, and WMI (Windows Management Instrumentation),as well as any COM aware applications, including the MS Office suite.
Line 43: Line 51:
#!wiki comment
What exactly is a "native language" in this context? What means "hosted"?
{{{#!wiki comment
Again: this is implementation stuff. The word "seamlessly" is hard to justify in a Wikipedia article anyway. It works when the type declarations delivered by the authors of the COM thing are correct. If not it won't. Often they are not, including some from Microsoft.
-- KaiJaeger <<DateTime(2009-07-26T08:07:09Z)>>
}}}
 . --(* XML-array conversion primitives)-- --(* support for Subversion and Unicode text handling)--
Line 46: Line 57:
Visual APL is so fundamentally different from others (I dare say: real!) APLs that it needs much more details - or shouldn't be mentioned at all! -- KaiJaeger <<DateTime(2009-07-26T08:04:22Z)>>

    * ActiveX or COM Interrop support allowing APL to use, seamlessly, Windows resources, notably the operating system's Shell, Win32 APIs, and WMI (Windows Management Instrumentation),as well as any COM aware applications, including the MS Office suite.

#!wiki comment
Again: this is implementation stuff. The word "seamlessly" is hard to justify in a Wikipedia article anyway. It works when the type declarations delivered by the authors of the COM thing are correct. If not it won't. Often they are not, including some from Microsoft.

    *

      XML-array conversion primitives
    *

      support for Subversion and Unicode text handling

#!wiki comment
What I am missing is a remark about the most important enhancements: Namespaces in Dyalog and integrated debuggers in some implementation. This is again implementation stuff, but very closely related with the language and it's usage. -- KaiJaeger <<DateTime(2009-07-26T08:04:22Z)>>
{{{#!wiki comment
What I am missing is a remark about the most important enhancements: Namespaces in Dyalog and integrated debuggers in some implementation. This is again implementation stuff, but very closely related to the language and it's usage. -- KaiJaeger <<DateTime(2009-07-26T08:04:22Z)>>
}}}
Line 64: Line 61:

[1] http://awards.acm.org/citation.cfm?id=0703524&srt=all&aw=140&ao=AMTURING <<BR>> [2] http://www.mathworks.com/company/newsletters/news_notes/clevescorner/jan06.pdf 
----
''I'd just like to point out that none (not one) of the editors amending the above has seen fit to include a citation leaving the only two citations gathered so far (the main point of the excercise) sitting quietly here at the bottom with no remaining referent!'' -- PhilLast <<DateTime(2009-07-27T06:58:01Z)>>
----

[1] http://awards.acm.org/citation.cfm?id=0703524&srt=all&aw=140&ao=AMTURING <<BR>> [2] http://www.mathworks.com/company/newsletters/news_notes/clevescorner/jan06.pdf

Please add comments and questions as "wiki comments" - see HelpOnComments for details. Note that JavaScript needs to be enabled to take advantage of this feature.


Can I suggest that we ignore the above exhortation and make all comments visible. There really is no good reason to hide them and it's almost impossible to recognise that we're looking at the same page after hitting the edit button. -- PhilLast 2009-07-27 07:10:49


APL is an acronym for A Programming Language - it is based on a strict (unambiguous) mathematical notation invented by the late Kenneth E Iverson; it is an interpreted, interactive, and array oriented commercial language available for all contemporary platforms. Amongst programming languages, APL has at least three unique/exclusive hallmarks:

1. It is culture 'neutral'; it uses symbols rather than 'reserved' keywords.

2. It is solution 'focussed'; it promotes the expression of algorithms without any consideration of machine architecture or operating system - APL is a type 'inferred' language that rarely necessitates coding structures for loops.

3. It has just one 'simple' operator precedence rule: all expressions evaluate from right to left; if necessary, this default can be overrridden by enclosing parts of an expression in round brackets, with innermost sets of brackets imposing the highest level of precedence.

APL is one of the oldest programming languages, and an important influence on the development of spreadsheets, functional programming[1], Mathematica and MatLab[2]. It is a dynamic, interpreted language based on Iverson's mathematical notation. All data are arrays. Primitive operations all extend to arrays, and are denoted by distinctive graphic symbols rather than words, making APL programs compact and visually striking, with few or no loops.

The language flourishes in scientific, actuarial, statistical and financial applications, and is favored by domain experts writing software for their own purposes. APL is also associated with rapid and lightweight development projects in volatile business environments.

Interpreters are available for a wide range of platforms including PCs, Macs, Linux, mainframes and hand-held computers.--) Recent Notable extensions to APL interpreters and IDEs include:

  • --(* anonymous lambdas

  • support for class/object programming and .Net assemblies

  • a version of APL, Visual APL, that is a native .NET language using Visual Studio 2008 as its IDE.

  • ActiveX or COM Interrop support allowing APL to use Windows resources, notably the operating system's Shell, Win32 APIs, and WMI (Windows Management Instrumentation),as well as any COM aware applications, including the MS Office suite.

  • * XML-array conversion primitives * support for Subversion and Unicode text handling

-- StephenTaylor 2009-07-25 05:36:32


I'd just like to point out that none (not one) of the editors amending the above has seen fit to include a citation leaving the only two citations gathered so far (the main point of the excercise) sitting quietly here at the bottom with no remaining referent! -- PhilLast 2009-07-27 06:58:01


[1] http://awards.acm.org/citation.cfm?id=0703524&srt=all&aw=140&ao=AMTURING
[2] http://www.mathworks.com/company/newsletters/news_notes/clevescorner/jan06.pdf

WikipediaAplPageRevamp/WikiDraft (last edited 2017-02-16 18:47:00 by KaiJaeger)