54

Me-
/ / / / / / / / /
if (bool == true)
{
bool = false;
}
if (bool == false)
{
bool = true;
}
/ / / / / / / / /

My friend-
/ / / / / / / / /
bool = !bool;
/ / / / / / / / /

*not a real story*

Comments
Add Comment