Dear Stata users,
I have a question that cannot work around. I want to display say 20 times of symbol "L", and I also want that there're blank spaces between each L. The result will be "L L L L L L L L ...". However, the simple code below cannot achieve the result:
I have a question that cannot work around. I want to display say 20 times of symbol "L", and I also want that there're blank spaces between each L. The result will be "L L L L L L L L ...". However, the simple code below cannot achieve the result:
Code:
display _dup(20) "L"
Comment