Programming paradigms

up:: Programming ⚐

Paradigms are like a specific approach to how code is written on a large-scale level. An ideology of code, so to say.

  • Procedural style organizes code in a top-down, linear progression through a pre-determined set of operations, usually collected together in related units called procedures.
  • Object Oriented Programming organizes code by collecting logic and data together into units called classes.
  • Functional Programming style organizes code into functions (pure computations as opposed to procedures), and the adaptations of those functions as values.