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