Quote:
Originally Posted by LemonyBrainAid
Good job with the if statements though - I like how you ignored the curly braces as they're not necessary when you only have the one line of code being executed.
|
personally, i wouldnt recommend leaving the {}s out even for a single line. It can cause issues if someone decides to add other lines, and with nested if statements. Most tutorials I've read also recommend always using them.