Stax, 23+5+17+29=74
╥╟.└ç╘SJ∞CF╔v=▌╝Σ@∞ìé«g
(削除) Shortest answer so far (削除ここまで) 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 long.
The ASCII equivalent is:
{H34|S_h"_`c%z`n?+"m"mz`cc_?
Provided input [], generates this one (5 bytes)
mzc_?
Provided input [[1,"Golf"]], generates this one (17 bytes)
mz_1%z"Golf"?+c_?
Provided input [[3,"Fizz"],[5,"Buzz"]], generates this one (29 bytes)
mz_3%z"Fizz"?+_5%z"Buzz"?+c_?
- 3.7k
- 15
- 42