Hacker News new | ask | show | jobs
by Knork-and-Fife 131 days ago
If the only loop is `repeat i in range(start, end, step)` , how do you do a loop like "Keep reading from a buffer until it's empty"? I.e. any loop when you can't know the number of iterations needed when the loop starts?
1 comments

yes, support for unbounded loop is definitely something on my roadmap towards v1.
Should be a priority. Without it, your language relies on recursion for Turing completeness.