Originally posted by Shadow12345
Yeah that makes sense. About the indentation scheme. I really like this scheme:

if(something == true) {
dosomething();
}

As opposed to

if(something == true)
{
dosomething();
}

both are good schemes; i use the former. just remember to indent dosomething(); in either case!!

but "{{" is not an indentation scheme