Post History
BQN, 14 bytesSBCS ∾⟜•FMT"∾⟜•FMT" Run online! Assumes •FMT will format a string by placing it in quotes, which depends on the BQN system in use. After (⟜) applies its right operand •FMT to the ...
Answer
#1: Initial revision
# [BQN](https://mlochbaum.github.io/BQN/), 14 bytes<sup>[SBCS](https://github.com/mlochbaum/BQN/blob/master/commentary/sbcs.bqn)</sup> ``` ∾⟜•FMT"∾⟜•FMT" ``` [Run online!](https://mlochbaum.github.io/BQN/try.html#code=4oCiU2hvdyBxIOKGkCDiiL7in5zigKJGTVQi4oi+4p+c4oCiRk1UIgoK4oCiQlFO4oq44omhIHEgICAjIERvZXMgaXQgbWF0Y2ggaXRzZWxmIGV2YWx1YXRlZCBpbiBCUU4/) Assumes `•FMT` will format a string by placing it in quotes, which depends on the BQN system in use. [After](https://mlochbaum.github.io/BQN/tutorial/combinator.html#before-and-after) (`⟜`) applies its right operand `•FMT` to the argument string, then [joins](https://mlochbaum.github.io/BQN/doc/join.html) (`∾`) the argument string to it.