cx-language / cx

C* is a hybrid low-level/high-level systems programming language focused on performance and productivity.
https://cx-language.github.io/
MIT License
130 stars 9 forks source link

Allow iteration of builtin arrays #53

Closed emlai closed 3 years ago

emlai commented 5 years ago

E.g. the following should iterate through the array:

for (var i in [1, 2, 3]) {
  ...
}

Currently we get an error:

error: type 'int[3]' has no member function 'iterator'
emlai commented 3 years ago

Implemented in 29a1a4b82cb20c4d389f6fc74abed39b1b3bd88a.