4 lines
81 B
Haskell
4 lines
81 B
Haskell
|
|
import Data.List (inits)
|
||
|
|
|
||
|
|
main = mapM_ putStrLn $ tail $ inits $ replicate 5 '*'
|