Rowan

From APL Wiki
Revision as of 00:26, 4 November 2019 by 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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