Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Exec Quine by Moff
def quine():
x = ['def quine():', ' x.insert(1, " x = %s" % x)', ' return "\\n".join(x)']
x.insert(1, " x = %s" % x)
return "\n".join(x)
Sept. 1, 2015