Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
(define (fact n)
(if (< n 2)
1
(* n (fact (- n 1)))))
(dotimes (i 10000)
(fact 100))