Post History
Japt, 9 bytes No infinite lists in Japt so we'll have to go with a recursive solution. ßOpTµJJµ2 Test it ßOpTµJJµ2 ß :Recursive call with (irrelevant) argument Op : ...
Answer
#2: Post edited
- # [Japt](https://github.com/ETHproductions/japt), 9 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
- No infinite lists in Japt so we'll have to go with a recursive solution.
- ßOpTµJJµ2
[Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=309wVLVKSrUy)
- # [Japt](https://github.com/ETHproductions/japt), 9 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
- No infinite lists in Japt so we'll have to go with a recursive solution.
- ßOpTµJJµ2
- [Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=309wVLVKSrUy)
- ßOpTµJJµ2
- ß :Recursive call with (irrelevant) argument
- Op : Output with trailing newline (returns undefined and second argument is ignored)
- TµJ : Decrement T (initially 0) by J (initially -1)
- Jµ2 : Decrement J by 2