Totally off topic poll for the week of May 22 - 29, 2021

Curly braces

  • same line style
  • own line style

0 voters

  • same line style
if (you.hasAnswer()) {
    you.postAnswer();
} else {
    you.doSomething();
}

own line style

if (you.hasAnswer())
{
    you.postAnswer();
}
else
{
    you.doSomething();
}