Hacker News new | ask | show | jobs
by sangli 1971 days ago
Couldn't you do this in any language? Either write a do while or write a infinite loop with true as condition and then write breaks in the loop itself?

That's what I mostly do in java, write a while(true) and then either come back to change the condition or write break in the loop.