JohnEarnest / ok

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

operations on dicts don't take keys into account #35

Closed ngn closed 8 years ago

ngn commented 8 years ago
 [a:1;b:2] + [b:1;a:2]
[a:2;b:4]

expected: [a:3;b:3]