aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr351592_2/Fib.java
blob: c78635557e4460ab55f8af589868a353cf887169 (plain)
1
2
3
4
5
6
7
8
package caching;

public class Fib {
	public static int calc(int n){
		if (n < 2) return 1;
		return calc(n-1) + calc(n-2);
	}
}