Stuff
public text v1 · immutablewhile (true)
{
// blah blah blah
int x = do_stuff();
x++;
if (x == 5) break;
do_other_stuff(x);
}while (true)
{
// blah blah blah
int x = do_stuff();
x++;
if (x == 5) break;
do_other_stuff(x);
}