fibonacci :: Int -> Int -- testing 7 combinations of argument values -- pruning with 21/44 rules -- looking through 4 candidates of size 1 -- looking through 3 candidates of size 2 -- looking through 14 candidates of size 3 -- looking through 17 candidates of size 4 -- looking through 58 candidates of size 5 -- looking through 69 candidates of size 6 -- looking through 357 candidates of size 7 -- looking through 390 candidates of size 8 -- looking through 2265 candidates of size 9 -- looking through 2502 candidates of size 10 -- looking through 15355 candidates of size 11 -- looking through 17083 candidates of size 12 -- tested 21324 candidates fibonacci 0 = 1 fibonacci 1 = 1 fibonacci x = fibonacci (x - 1) + fibonacci (x - 2)