Rowan: Difference between revisions

From APL Wiki
Jump to navigation Jump to search
Miraheze>Adám Brudzewsky
(Created page with "{{Infobox array language | developer = Red Corona (Richard Smith) | released = 2004 | latest release version = 3.2 / 2013 | index origin = 1 | array model = flat array mode...")
 
Miraheze>Adám Brudzewsky
No edit summary
Line 15: Line 15:
| website = [http://redcorona.com/rowan/index.htm redcorona.com/rowan]
| website = [http://redcorona.com/rowan/index.htm redcorona.com/rowan]
| download = [http://redcorona.com/rowan/index.htm redcorona.com/rowan]
| download = [http://redcorona.com/rowan/index.htm redcorona.com/rowan]
| documentation = [http://redcorona.com/rowan/ref.htm]
| documentation = [http://redcorona.com/rowan/ref.htm Reference]
| influenced by = [[Dyalog APL]], [[J]]
| influenced by = [[Dyalog APL]], [[J]]
}}
}}

Revision as of 00:27, 4 November 2019

Rowan is the a very APL-like language built on the same engine as R, from which it inherits its array capabilities, connection to .NET, error-handling and namespace architecture. The following examples shows its similarity to APL when using dfns:

   avg←{(+/⍵)÷⍴⍵}
   a←3 5 6
   avg a
Result: 4.66666666666667

External links