mun-lang / mun

Source code for the Mun language and runtime.
https://mun-lang.org
Other
1.83k stars 72 forks source link

Dynamic resizing of arrays #504

Open Wodann opened 1 year ago

Wodann commented 1 year ago

Currently, arrays in Mun do not support dynamic resizing in Mun code, as we don't have the ability to call functions like push and resize. To support this, we need to implement:

Depends on