Reply to Re: Yargh, bumwaffle!
If you don't have an account, just leave the password field blank.
int &where = (random(1, 400));
int &wheere2 = (random(1, 2));
No need for the extra parenthesese.
int &where = random(1, 400);
int &wheere2 = random(1, 2);
is correct, I imagine. You also do it later.
int &wheere2 = (random(1, 2));
No need for the extra parenthesese.
int &where = random(1, 400);
int &wheere2 = random(1, 2);
is correct, I imagine. You also do it later.