This website requires JavaScript.
Explore
Help
Register
Sign in
aparler
/
RosettaCodeData
Watch
1
Star
0
Fork
You've already forked RosettaCodeData
0
Code
Issues
12
Pull requests
3
Projects
Releases
Packages
Wiki
Activity
Actions
main
RosettaCodeData
/
Task
/
Fibonacci-sequence
/
Vala
/
fibonacci-sequence-1.vala
7 lines
103 B
Vala
Raw
Permalink
Normal View
History
Unescape
Escape
Initial data commit
2023-07-01 11:58:00 -04:00
int
fibRec
(
int
n
)
{
Data update
2026-04-30 12:34:36 -04:00
if
(
n
<
2
)
return
n
;
else
return
fibRec
(
n
-
1
)
+
fibRec
(
n
-
2
)
;
Initial data commit
2023-07-01 11:58:00 -04:00
}
Reference in a new issue
Copy permalink