I develop for my career, but I also develop for fun, and whenever I think it can solve a problem I'm having. This has lead me to create side projects, such as Rental Map and BusTimes, among others.
The first example from this week was a
count down. This would display on screen a count down from 10 to 0.
The important thing from this example was
In many ways, this behaves like the intersection example from last week. If our start
were 10, and our end were 0, and our inc was -1, we would go down one number each time
from 10 to 1 (remember, we won’t do anything with 0, cause we stop)
The second example this week was a mathematical table. In this
example we will have the numbers from 0 to 15 as a header row, and column. We will then
will in the position at the row and column with the multiplication of the row and column
header.