MFC/p1/Power1.hs
Carlos Galindo 38ce60f8b7 Practica 1
2018-10-15 19:13:06 +02:00

6 lines
99 B
Haskell

module Power1 where
power1 :: Int -> Int -> Int
power1 _ 0 = 1
power1 n t = n * power1 n (t - 1)