Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Style Guide

eric-schmiel-timmons edited this page Nov 15, 2023 · 2 revisions

If statements

All if statements should have a body, i.e.

  if(condition) {
    somethingHappens()
  }

Single line if statements are unacceptable, i.e.

  if(condition) somethingHappens()
Clone this wiki locally