Post History
Japt -R, 27 bytes Lõ@"FiBu"ò úz4 ËpXv°EÑÄìªX Test it Lõ@"FiBu"ò úz4 ËpXv°EÑÄìªX L :100 õ :Range [1,L] @ ...
#1: Initial revision
# [Japt](https://github.com/ETHproductions/japt) [`-R`](https://codegolf.meta.stackexchange.com/a/14339/), 27 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
Lõ@"FiBu"ò úz4 ËpXv°EÑÄìªX
[Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LVI&code=TPVAIkZpQnUi8iD6ejQgy3BYdrBF0cTDrKpY)
Lõ@"FiBu"ò úz4 ËpXv°EÑÄìªX
L :100
õ :Range [1,L]
@ :Map each X
"FiBu" : Literal string
ò : Partitions of length 2
úz4 : Right pad each with "z" to length 4
Ë : Map each element at 0-based index E
p : Repeat
Xv : Test X for divisibility by (result will be 1 or 0)
°E : Prefix increment E
Ñ : Multiply by 2
Ä : Add 1
à : End map
¬ : Join
ªX : Logical OR with X
:Implicit output, joined with newlines
