We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8ed68 commit ee922e6Copy full SHA for ee922e6
ggvm_util.go
lib.go
@@ -0,0 +1,8 @@
1
+package ggvm_util
2
+
3
+func Fib(x int) int {
4
+ if x == 0 {
5
+ return 1
6
+ }
7
+ return Fib(x-1) + Fib(x-2)
8
+}
0 commit comments