The looping counter is a challenge that prints an infinite number of lines. The first line has one *, the next line has one more * than this line. An example output is:
*
**
***
****
*****
******
*******
... (goes forever)
However, the question above is too simple and is a duplicate, so let's make it harder.
For every line, instead of printing *'s, print an uppercase English letter; also, the number of characters is not increased by one, but by the ASCII value of character in this line minus 64: the first line is one A, the second line is two B's, the third line is four C's, ..., the 26-th line is 326 Z's, the 27-th line is 352 A's, ...
A
BB
CCCC
DDDDDDD
EEEEEEEEEEE
FFFFFFFFFFFFFFFF
... (goes forever)
This is code-golf, so code in the fewest bytes.
Your output can be in any place (e.g.: Standard output, files, graphics, etc.), but must follow the format.



n=0;n+=1ton='';n+='*'\$\endgroup\$