JoeStrout/miniscript

[C++] Circular reference causes MiniScript aborts

Withered-Flower-0422 opened this issue · 0 comments

CL:

> a = {}
> a.push a
{a: 1}
> a[a]

C:\Users\13390> // MiniScript aborts

MM:

]a = {}
]a.push a
{_: 1}
]a[a]
Runtime Error: Key Not Found: '_' not found in map [line 1]
]