Automation: Difference between revisions
Jump to navigation
Jump to search
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 ... |
Amweeden06 (talk | contribs) No edit summary |
||
| 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 15:25, 2 April 2010
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.