Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 14, 2011
1 parent ff52b44 commit 50afc72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/Spec.NaturalSpec/Fibonacci.fs
@@ -1,9 +1,9 @@
module NaturalSpec.Fibonacci

//let rec fib = function
//| 0 -> 0
//| 1 -> 1
//| n -> fib (n-1) + fib (n-2)
let rec fib1 = function
| 0 -> 0
| 1 -> 1
| n -> fib1 (n-1) + fib1 (n-2)

let q1 = 1I,1I,1I,0I

Expand Down

0 comments on commit 50afc72

Please sign in to comment.