Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
int, float, rune. This allows scalar arrays with mixed scalar types
|
|
|
|
Example of code this commit fixes:
before:
a←10
{a←⍵ ⋄ a} 20
10
a
10
now:
a←10
{a←⍵ ⋄ a} 20
20
a
10
|
|
|
|
TCO later.
|
|
|
|
error on assignment to ⍵
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
functions or operators
|
|
Also implement ⍨ and ⍥ since they are very simple
|
|
|
|
get freed when not in use anymore.
|
|
|
|
evaluator/parser.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|