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...")
(No difference)

Revision as of 00:26, 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