Automation

From Earlham CS Department
Revision as of 11:21, 2 April 2010 by Amweeden06 (talk | contribs) (New page: Making events repeatable, and repeatable events trivial to reproduce. Simple software example: if trying to do a task n times, don't write the task n times, instead write a for loop and ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Making events repeatable, and repeatable events trivial to reproduce. Simple software example: if trying to do a task n times, don't write the task n times, instead write a for loop and only write the task once. Benefits a lot from editing/refactoring.