Post History
Husk, 8 bytes S+s"S+s" Try it online! Basically Leo's original quine. It concatenates the string evaluated version of S+s to itself. So: "S+s" + "\"S+s\"" gives the original code.
Answer
#1: Initial revision
# [Husk], 8 bytes S+s"S+s" [Try it online!][TIO-khhfy0lm] [Husk]: https://github.com/barbuz/Husk [TIO-khhfy0lm]: https://tio.run/##yygtzv7/P1i7WAmE//8HAA "Husk – Try It Online" Basically Leo's original quine. It concatenates the string evaluated version of `S+s` to itself. So: `"S+s" + "\"S+s\""` gives the original code.