brainfuck, 25 bytes
--[-->+<]+++++[->-.....<]
Try it online! Note: Requires an implementation with 8-bit unsigned cells
Output:
~~~~~}}}}}|||||{{{{{zzzzz
Explanation
--[ 254
-->+<] /2 = 127 into the second cell
+++++[ Five times
->-.....<] Print the second cell - 1 five times
brainfuck, 25 bytes
--[-->+<]+++++[->-.....<]
Output:
~~~~~}}}}}|||||{{{{{zzzzz
Explanation
--[ 254
-->+<] /2 = 127 into the second cell
+++++[ Five times
->-.....<] Print the second cell - 1 five times
brainfuck, 25 bytes
--[-->+<]+++++[->-.....<]
Try it online! Note: Requires an implementation with 8-bit unsigned cells
Output:
~~~~~}}}}}|||||{{{{{zzzzz
Explanation
--[ 254
-->+<] /2 = 127 into the second cell
+++++[ Five times
->-.....<] Print the second cell - 1 five times