fakultaet.hs 44 B

12
  1. fak n = if (n==0) then 1 else n * fak (n-1)