Revision 76d64dc0-ccf4-406f-ba63-8995e2a1eb3d - Code Golf Stack Exchange
# [Thunno 2](https://github.com/Thunno/Thunno2) `N`, 11 [bytes](https://github.com/Thunno/Thunno2/blob/main/docs/codepage.md "Thunno 2 codepage")
```
ɦık+Ḋkg×Jn|
```
I'll add an ATO link when Thunno 2 gets added to ATO.
Add a trailing `£` if you want it flagless.
## [Thunno 2](https://github.com/Thunno/Thunno2), <s>18</s> 17 [bytes](https://github.com/Thunno/Thunno2/blob/main/docs/codepage.md "Thunno 2 codepage")
```
ɦı35dḊʋ⁴ȥæÞ½×Jn|£
```
No questionable constants. Note: this requires Thunno 2.0.8+, and when Thunno 2 gets added to ATO, it will be on 2.0.6. Change `ʋ⁴ȥæÞ` to `’⁴ȥæÞ’` for compatability with any version of Thunno 2.
#### Explanation
```python
ɦık+Ḋkg×Jn| # Full program
ɦ # Push 100
ı # Map over [1..100]:
k+ # Push [3, 5]
Ḋ # Divisible by [3, 5] (vectorises)
kg # Push ["Fizz", "Buzz"]
× # Multiply element-wise
J # Join by nothing
n| # Logical OR with the number
# N flag joins by newlines
# Implicit output
```
```python
ɦı35dḊʋ⁴ȥæÞ½×Jn|£ # Full program
ɦ # Push 100
ı # Map over [1..100]:
35d # Push [3, 5]
Ḋ # Divisible by [3, 5] (vectorises)
ʋ⁴ȥæÞ # Push compressed string "FizzBuzz"
½ # Split in half to get ["Fizz", "Buzz"]
× # Multiply element-wise
J # Join by nothing
n| # Logical OR with the number
£ # Print the result
```