big if true
@ShadowJonathan
Concerning
@ShadowJonathan Reminds me of this good old hack:
int fail_count = 0;
setup_stuff();
if(0)
{
retry:
reset_stuff();
}
do_stuff();
if(failed && ++fail_count < 3)
{
goto retry;
}
@ShadowJonathan huge presumption
you're just lucky its not WHILE true or you might be trapped forever 

you know what you did
@ShadowJonathan
Surely
If true {
size = MAX_SIZE
}
?
@LunaDragofelis @ShadowJonathan
I'm guessing Rust

@ShadowJonathan Let me leave this right here… :carefully puts stateful conditional continuations down before backing away a few steps, turning heel, and running:
https://gist.github.com/amcgregor/a816599dc9df860f75bd#file-quiz-clu-L11-L17
