packages feed

HaRe-0.8.0.0: test/testdata/LiftOneLevel/C3.hs

module LiftOneLevel.C3 where

import LiftOneLevel.D3(pow)

anotherFun (x:xs) = x^pow + anotherFun xs

anotherFun [] = 0