5 lines
82 B
Haskell
5 lines
82 B
Haskell
|
module Hello where
|
||
|
|
||
|
hello n = concat(replicate n "hello ")
|
||
|
hello :: Int -> [Char]
|