Profile Picture
I'm a software developer and student at the University of Florida building programs for fun.

I'm interested in graphics, math, music, machine learning, creative coding, and cycling.

Fibonacci Numbers in Rust

Perhaps one of the most well-known numeric sequences, the Fibonacci sequence sees each number as the sum of the two preceding numbers. Starting with \(0\) and \(1\), we can find the next element by doing \(0 + 1 = 1\), then \(1 + 1 = 2\) an…