nirum-lang / nirum-python

The Nirum runtime library for Python
https://nirum.org/docs/target/python.html
MIT License
8 stars 9 forks source link

nirum.datastructures.List is not immutable but a just proxy #104

Closed dahlia closed 6 years ago

dahlia commented 6 years ago
>>> from nirum.datastructures import List
>>> l = [1,2,3]
>>> il = List(l)
>>> l.append(4)
>>> len(il)
kanghyojun commented 6 years ago

Already resolved on #105