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