DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Put curly braces even around one-line if, else or loop statements:. The only exception is if you are using if/else as an one-line ternary operator.
| Code Block | ||||
|---|---|---|---|---|
| ||||
// Correct:
if (true) {
println("Wow!")
}
// Correct:
if (true) statement1 else statement2
// Wrong:
if (true)
println("Wow!")
|
...