- Elements are related by the fact that they have to be used in a particular order because the output of one is the input to the next
- Forms a chain
Example
def timeToRetire(dob):
age = Date.now() - dob
retirement_age = getRetirementAge()
time_to_retire = retirement_age - age
return time_to_retire