jed/140bytes

for x while

Closed this issue · 1 comments

In the main page it says:

for and while require the same number of bytes

But it is not the case if you want an infinite loop such as:

for(;;) {
}

over

while(!0) {
}

Or is there something better?

jed commented

perhaps this should be changed to

for and while require the same number of bytes (except for infinite loops).

feel free to go ahead and make the change you see fit.