Hacker News new | past | comments | ask | show | jobs | submit login

I follow Python's example for this.

    if (...) {
      ...
    } else if (...) {
      ...
    }
corresponds to

    if ... :
      ...
    else if ... :
      ...
not

    if ... :
      ...
    
    else if ... :
      ...



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: