Post History
Japt -R, 13 bytes Uses = in place of #. Æ"_/"+Xç¥ÃoÅù Try it Æ"_/"+Xç¥ÃoÅù :Implicit input of integer U Æ :Map each X in the range [0,U) "_/" : Literal str...
Answer
#2: Post edited
- # [Japt](https://github.com/ETHproductions/japt) [`-R`](https://codegolf.meta.stackexchange.com/a/14339/), 13 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
- Æ"_/"+Xç¥ÃoÅù
- [Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LVI&code=xiJfLyIrWOelw2/F%2bQ&input=Ng)
- Æ"_/"+Xç¥ÃoÅù :Implicit input of integer U
- Æ :Map each X in the range [0,U)
- "_/" : Literal string
- + : Append
- Xç : X times repeat
- ¥ : "=="
- Ã :End map
- o :Modify last element
- Å : Slice off first character
- ù :Left pad each with spaces to the length of the longest
- :Implicit output joined with newlines
- # [Japt](https://github.com/ETHproductions/japt) [`-R`](https://codegolf.meta.stackexchange.com/a/14339/), 13 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
- Uses `=` in place of `#`.
- Æ"_/"+Xç¥ÃoÅù
- [Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LVI&code=xiJfLyIrWOelw2/F%2bQ&input=Ng)
- Æ"_/"+Xç¥ÃoÅù :Implicit input of integer U
- Æ :Map each X in the range [0,U)
- "_/" : Literal string
- + : Append
- Xç : X times repeat
- ¥ : "=="
- Ã :End map
- o :Modify last element
- Å : Slice off first character
- ù :Left pad each with spaces to the length of the longest
- :Implicit output joined with newlines
#1: Initial revision
# [Japt](https://github.com/ETHproductions/japt) [`-R`](https://codegolf.meta.stackexchange.com/a/14339/), 13 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1) Æ"_/"+Xç¥ÃoÅù [Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LVI&code=xiJfLyIrWOelw2/F%2bQ&input=Ng) Æ"_/"+Xç¥ÃoÅù :Implicit input of integer U Æ :Map each X in the range [0,U) "_/" : Literal string + : Append Xç : X times repeat ¥ : "==" à :End map o :Modify last element Å : Slice off first character ù :Left pad each with spaces to the length of the longest :Implicit output joined with newlines