Skip to content

Instantly share code, notes, and snippets.

@tolumide-ng
Created June 6, 2020 00:05
Show Gist options
  • Save tolumide-ng/b7fb313c038318606e263502f8461cf6 to your computer and use it in GitHub Desktop.
Save tolumide-ng/b7fb313c038318606e263502f8461cf6 to your computer and use it in GitHub Desktop.
Fibonacci Series in Rust
pub fn fibonnacci_recursive(n: i32) -> i32 {
if n < 2 {
n
} else {
fibonnacci_recursive(n - 1) + fibonnacci_recursive(n - 2)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment