phantomics / april

The APL programming language (a subset thereof) compiling to Common Lisp.
Apache License 2.0
602 stars 31 forks source link

+/⍳n idiom does not sum last number #236

Closed faeredia closed 1 year ago

faeredia commented 2 years ago

The following should all give the same result, but the first one is not summing the last number

> (april:april "+/ ⍳5")
10
> (april:april "+/ 1 2 3 4 5")
15
> (april:april "+/ (⍳5)")
15

Other functions (eg, -×÷⌊) work fine

phantomics commented 1 year ago

This is fixed.