Post History
Vyxal, 5 4 bytes ¤{‹… Try it Online! This is so stupid and I love it Explained ¤{‹… ¤ # Push an empty string { # Forever: ‹ # Append a "-" to the top of the stack … # ...
Answer
#2: Post edited
# [Vyxal](https://github.com/Vyxal/Vyxal), 5 bytes- ```
{×n*,- ```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCJ7w5duKiwiLCIiLCIiXQ==)`{\*n*,` for all ascii.- ## Explained
- ```
{×n*,{ # Forever,× * # Repeat the character "*"n # the number of times the loop has run, # print that- ```
- # [Vyxal](https://github.com/Vyxal/Vyxal), <s>5</s> 4 bytes
- ```
- ¤{‹…
- ```
- [Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCLCpHvigLnigKYiLCIiLCIiXQ==)
- This is so stupid and I love it
- ## Explained
- ```
- ¤{‹…
- ¤ # Push an empty string
- { # Forever:
- ‹ # Append a "-" to the top of the stack
- … # And print it without popping
- ```
#1: Initial revision
# [Vyxal](https://github.com/Vyxal/Vyxal), 5 bytes ``` {×n*, ``` [Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCJ7w5duKiwiLCIiLCIiXQ==) `{\*n*,` for all ascii. ## Explained ``` {×n*, { # Forever, × * # Repeat the character "*" n # the number of times the loop has run , # print that ```