Skip to content

Don't Repeat Yourself

Jason Charney edited this page Jan 19, 2015 · 1 revision

D.R.Y. or Don't Repeat Yourself is an acronym that is exactly what is means. Don't repeat yourself. Computers exist to execute repeatitous code. Write programs so that the computer does the repeating, not you!

This is often used with functional programming languages like Ruby or Python.

See Also

  • [KISS](Keep It Simple Stupid)
  • [FFF](Form Follows Function)
  • Ruby
  • Python

Clone this wiki locally