package
Version:
v0.0.0-...-211c7f1
Opens a new window with list of versions in this module.
Published: Dec 18, 2019
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
func Fibonacci(n int) (res int) {
if n <= 1 {
res = 1
} else {
res = Fibonacci(n-1) + Fibonacci(n-2)
}
return
}
accepts a general operation op:
Source Files
¶
Click to show internal directories.
Click to hide internal directories.