Revision 6dda6907-51f5-4a9f-bc35-2675ad2e44e7 - Code Golf Stack Exchange
# [Stax](https://github.com/tomtheisen/stax), 23+5+17+29=74
╥╟.└ç╘SJ∞CF╔v=▌╝Σ@∞ìé«g
[Run and debug it](https://staxlang.xyz/#p=d2c72ec087d4534aec4346c9763dddbce440ec8d82ae67&i=[]%0A[[1,%22Golf%22]]%0A[[3,%22Fizz%22],[5,%22Buzz%22]]&a=1&m=2)
<s>Shortest answer so far</s> Not surprisingly beaten by Jelly. The string template provided in Stax is really neat and provides printf-like functions. The programs generated by the compiler are almost always as short as the best one can achieve by manually codegolfing, without using packing.
The compiler itself is 23 [bytes](https://github.com/tomtheisen/stax/blob/master/docs/packed.md#packed-stax) long.
The ASCII equivalent is:
{H34|S_h"_`c%z`n?+"m"mz`cc_?
Provided input `[]`, generates this one (5 bytes)
mzc_?
[Run and debug it](https://staxlang.xyz/#c=mzc_%3F&i=100&a=1)
Provided input `[[1,"Golf"]]`, generates this one (17 bytes)
mz_1%z"Golf"?+c_?
[Run and debug it](https://staxlang.xyz/#c=mz_1%25z%22Golf%22%3F%2Bc_%3F&i=100&a=1)
Provided input `[[3,"Fizz"],[5,"Buzz"]]`, generates this one (29 bytes)
mz_3%z"Fizz"?+_5%z"Buzz"?+c_?
[Run and debug it](https://staxlang.xyz/#c=mz_3%25z%22Fizz%22%3F%2B_5%25z%22Buzz%22%3F%2Bc_%3F&i=100&a=1)