Bystroushaak / tinySelf

Self-like language implemented in the RPython language toolkit.
29 stars 3 forks source link

Tail call optimization #66

Closed Bystroushaak closed 5 years ago

Bystroushaak commented 5 years ago

Tail call optimization is important to allow no-cost recursion, which can be then used to implement all kind of data structures.

As such, it would be really useful for the while loops / messages (#64).

Bystroushaak commented 5 years ago