Skip to content

Commit ee922e6

Browse files
committed
rename to lib.og
1 parent 5d8ed68 commit ee922e6

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

ggvm_util.go

Lines changed: 0 additions & 10 deletions
This file was deleted.

lib.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)