Code:
Sub Main()
aa = {}
print type(aa)
aa = eval("{}")
print type(aa)
eval("aa = {}")
print type(aa)
End Sub
Output:
roAssociativeArray
roList
roAssociativeArray
Question:
Shouldn't all three of these output roAssociativeArray?
autorun.brs