Difference between revisions of "Automation"

From Earlham CS Department
Jump to navigation Jump to search
(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 ...)
 
 
Line 1: Line 1:
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|editing/refactoring]].
+
[[Robotics-lab6-tasks|Back to Lab 6 Main 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 only write the task once.  Benefits a lot from [[Editing/Refactoring|editing/refactoring]].  Beneficial to [[Testing|testing]].

Latest revision as of 11:25, 2 April 2010

Back to Lab 6 Main 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 only write the task once. Benefits a lot from editing/refactoring. Beneficial to testing.