6

is it true?l

Comments
  • 1
    Not entirely true, there are also:

    3.

    if(condition) statement;

    4.

    (condition) ? statement1 : statement2;
  • 0
    Depending on where they come from, you may find a fifth and sixth categories too:

    5.

    switch(condition) {
    case true:
    statement;
    break;
    }

    6.

    switch(condition)
    {
    case true:
    statement;
    break;
    }
  • 0
    @sterex
    what i mean is there are two types of people for writing the bracket.
  • 1
    @adryanev Right. I prefer being in the first group. :-)
  • 0
    @sterex I'm from the 1st group too.
    High Five! \ (._.)
  • 0
    That makes 3 of us
  • 0
    Hello no 4 . 'S = blasphemy it's all about .....
  • 1
    Not forgetting
    if(condition):
    endif;
    For those people who have a special place reserved in hell
  • 1
    im from the first group.work on second group
Add Comment