kevinlawler / kona

Open-source implementation of the K programming language
ISC License
1.36k stars 138 forks source link

another break with k3.2 & k2.8 #601

Closed tavmem closed 4 years ago

tavmem commented 4 years ago

in k3.2 & k2.8

  10 +': 2
10
  10 -': 2
10

in kona

  10 +': 2
10 2
  10 -': 2
10 2
tavmem commented 4 years ago

Also: in k3.2 and k2.8

  +':2
4

in Kona

  +':2
Segmentation fault (core dumped)
tavmem commented 4 years ago

And: in k3.2 and k2.8

  (,10),+': 2
10 4

In kona

  (,10),+': 2
Segmentation fault (core dumped)
tavmem commented 4 years ago

After the commit of 25-Sep-2020 titled "partial fix for issue 601"

tavmem commented 4 years ago

Another related problem: In k2.8:

  +': 2 3
,5

in kona:

  +': 2 3
5
tavmem commented 4 years ago

After commit of 28-Sep-2020 titled "another partial fix for issue 601" this is fixed in kona:

  +': 2 3
,5

The only remaining problem at this point appears to be:

  +':2
()