xpqz / learnapl

Introduction to Dyalog APL: https://xpqz.github.io/learnapl
Other
126 stars 11 forks source link

Incorrect output for example on page /iteration.html #34

Open sloorush opened 6 months ago

sloorush commented 6 months ago

Here:

×⍨¨1+⍳9  ⍝ Square elements via each (but see below!)
1 4 9 16 25 36 49 64 81

It should be:

      ×⍨¨1+⍳9
4 9 16 25 36 49 64 81 100