What does it mean to program in a functional style? (por Brian Will)
- functions can be passed—as arguments—to other functions
if,try,whilereturn something- adhere to statelessness (no side effects, so you can see everything that a function does just looking in the one place)

