JohnEarnest / ok

An open-source interpreter for the K5 programming language.
MIT License
585 stars 73 forks source link

bug with a[,1]:,1 ? #96

Open tangentstorm opened 2 years ago

tangentstorm commented 2 years ago

in ngn:

  a:!10; a[,2]:,50; a
0 1 50 3 4 5 6 7 8 9

in oK:

   a:!10; a[,2]:,50; a
(0
 1
 ,50
 3
 4
 5
 6
 7
 8
 9)
JohnEarnest commented 2 years ago

ngn/k's behavior is also consistent with k3.

razetime commented 2 years ago

is this being worked on? I'd like to solve it.