Statements

  • Semicolons are used to separate multiple statements on the same line; otherwise, they're optional
  • Indentation does not affect the program

Code blocks

  • One or more statements between braces or do...end
  • Can be passed along to a method and run (one or more times) via the yield command
  • Can be converted into a closure