Inspired by a task for Programming 101, here's a challenge that hopefully isn't too easy.
Input:
- A positive integer
n >= 1.
Output:
nlines of asterisks, where every new line has one asterisk more than the line before, and starting with one asterisk in the first line.
Test case (n=5):
* ** *** **** ***** This is code-golf, so shortest answer in bytes wins.