Post History
Canvas, 24 bytes zz+¹┘%!* ‾U{ŗ3Fi⁸5Bu⁸+nO Try it here! Explanation (ASCII-fied for better monospacing): zz+¹┘%!* Helper function ⁸; Expects stack to be [modulo, string] zz+ append "z...
#1: Initial revision
# [Canvas](https://github.com/dzaima/Canvas), 24 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)
zz+¹┘%!*
‾U{ŗ3Fi⁸5Bu⁸+nO
[Try it here!](https://dzaima.github.io/Canvas/?u=enoldUZGMEIlQjkldTI1MTgldUZGMDUldUZGMDEldUZGMEElMEEldTIwM0VVJXVGRjVCJXUwMTU3JXVGRjEzRmkldTIwNzgldUZGMTVCdSV1MjA3OCV1RkYwQiV1RkY0RSV1RkYyRg__,v=8)
Explanation (ASCII-fied for better monospacing):
```text
zz+¹┘%!* Helper function ⁸; Expects stack to be [modulo, string]
zz+ append "zz" to the string
¹ push the current loop index
┘ retrieve the modulo
% calculate the modulo
! negate (i.e. is-divisible)
* repeat the string vertically that many times
‾U{ŗ3Fi⁸5Bu⁸+nO Main program
‾U{ Repeat 100 times, pushing index & writing it to ¹
ŗ stringify the pushed index
3Fi⁸ invoke ⁸ on [3; "Fi"]
5Bu⁸ invoke ⁸ on [5; "Bu"]
+ join the two results
n overlap that over the index; this works as the maximum index, 100, is less than 4 characters
O output that
```
