Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit cfe3804

Browse files
committed
添加
1 parent c6d17a7 commit cfe3804

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fib.cn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ fn fib(n : int) : int{
55
if (n <= 1){
66
return n;
77
} else {
8+
println("n = " + n);
89
return fib(n - 1) + fib(n - 2);
910
};
1011
};

0 commit comments

Comments
 (0)