Bläddra i källkod

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 år sedan
förälder
incheckning
5fa2a93fe9
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md Visa fil

@@ -6,7 +6,7 @@
6 6
 
7 7
 [Version Verano 2016- Tatiana]
8 8
 
9
-Recursion is a technique that is commonly used in programming. With this technique, problems are done by solving similar problems but for smaller cases. We can construct sets of objects or tasks using *recursive rules* and *initial values*. *Recursive functions* are functions that are self-invoking, using smaller sets or elements each time, until reaching a point where an initial value is used instead of self-invoking. In this laboratory experience, you will implement some tools to draw and practice the use of recursive functions to fill with color some figures.
9
+Recursion is a technique that is commonly used in programming. With this technique, problems are solved by solving similar problems but for smaller cases. We can construct sets of objects or tasks using *recursive rules* and *initial values*. *Recursive functions* are functions that are self-invoking, using smaller sets or elements each time, until reaching a point where an initial value is used instead of self-invoking. In this laboratory experience, you will implement some tools to draw and practice the use of recursive functions to fill with color some figures.
10 10
 
11 11
 
12 12
 ## Objectives: