MFC/p1/Hello.hs

5 lines
82 B
Haskell
Raw Permalink Normal View History

2018-10-15 19:13:06 +02:00
module Hello where
hello n = concat(replicate n "hello ")
hello :: Int -> [Char]