Polynomial Algebra
-- -- example code -- fibs = fix $ \f -> 1 : 1 : zipWith (+) f (tail f)
Category: Code