Notes to future self:
Watch out for integer division! 9 / 10 # => 0 🤔
9 / 10 # => 0 🤔
Order of operations matters! Float(9/10) # => 0.0 🤔🤔
Float(9/10) # => 0.0 🤔🤔
Ruby has you covered! Float(9)/10 # => 0.9 😀 9.to_f/10 # => 0.9 😀 9.fdiv(10) # => 0.9 😀
Float(9)/10 # => 0.9 😀
9.to_f/10 # => 0.9 😀
9.fdiv(10) # => 0.9 😀