Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Update fibonacci.p
Browse files Browse the repository at this point in the history
  • Loading branch information
R-unic authored Oct 6, 2023
1 parent cc0769f commit c8383c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fibonacci.p
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ int fn fib(int n) {
return n == 1 or n == 2 ? 1 : fib(n - 1) + fib(n - 2)
}

fib(3)
## fib(3)

0 comments on commit c8383c0

Please sign in to comment.