You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
620 B

5 years ago
## fibonacci
### Instructions
Write a **recursive** function that returns the value at the position `index` in the fibonacci sequence.
The first value is at index `0`.
The sequence starts this way: 0, 1, 1, 2, 3 etc...
A negative index will return `-1`.
`for` is **forbidden** for this exercise.
5 years ago
### Expected function
```go
package piscine
func Fibonacci(index int) int {
}
```
5 years ago
### Usage
Here is a possible program to test your function :
```go
package main
import (
"fmt"
"piscine"
)
func main() {
arg1 := 4
fmt.Println(piscine.Fibonacci(arg1))
}
```
And its output :
```console
$ go run .
3
$
```