refu-lang / refu

Refu language
21 stars 4 forks source link

Implement backend code generation for iterable ranges #28

Closed LefterisJP closed 7 years ago

LefterisJP commented 7 years ago

Iterable ranges used in for expressions are accepted and typechecked but no proper backend code is yet generated.

Implement the backend code generation for constructs like the following:

for a in 1:2:10 {
}

There is a different issue tracking the variable range backend code generation: https://github.com/refu-lang/refu/issues/29