Skip to content

Commit

Permalink
Update fibonacci exercise.rs (google#1909)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferraridamiano authored Mar 11, 2024
1 parent 595ecbc commit 9059a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types-and-values/exercise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ fn fib(n: u32) -> u32 {
// ANCHOR: main
fn main() {
let n = 20;
println!("fib(n) = {}", fib(n));
println!("fib({n}) = {}", fib(n));
}
// ANCHOR_END: main

0 comments on commit 9059a1a

Please sign in to comment.