Post History
Vyxal D, 10 bytes `:qpṘ`:qpṘ Try it Online! `:qp `:qp # Standard quine structure Ṙ Ṙ # Reverse Or, more interestingly... Vyxal D, 31 bytes `q\`:Ė#\`+øm`:Ė#Ė:`mø+`\#Ė:`\q` Try ...
Answer
#1: Initial revision
# [Vyxal](https://github.com/Vyxal/Vyxal) `D`, 10 bytes ``` `:qpṘ`:qpṘ ``` [Try it Online!](https://lyxal.pythonanywhere.com?flags=D&code=%60%3Aqp%E1%B9%98%60%3Aqp%E1%B9%98&inputs=&header=&footer=) ``` `:qp `:qp # Standard quine structure Ṙ Ṙ # Reverse ``` Or, more interestingly... # [Vyxal](https://github.com/Vyxal/Vyxal) `D`, 31 bytes ``` `q\`:Ė#\`+øm`:Ė#Ė:`mø+`\#Ė:`\q` ``` [Try it Online!](https://lyxal.pythonanywhere.com?flags=D&code=%60q%5C%60%3A%C4%96%23%5C%60%2B%C3%B8m%60%3A%C4%96%23%C4%96%3A%60m%C3%B8%2B%60%5C%23%C4%96%3A%60%5Cq%60&inputs=&header=&footer=) ``` `q\`:Ė \`+ `:Ė # Standard eval quine structure # # Append a # øm # Palindromise #... # Padding to make it a palindrome #Ė:`mø+`\#Ė:`\q` ```