1 2 3 4 5 6
applyTwice :: (a -> a) -> a -> a applyTwice f arg = f (f arg) -- this thing does it twice, i want to add a 3rd parameter doing it N times