Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Exec Quine by terryyin
class quine(str):
'''class quine(str):
{}
def __new__(typ, *args, **kwargs):
return quine.__doc__.format("'"+"'"+"'"+quine.__doc__+ "'"+"'"+"'")
'''
def __new__(typ, *args, **kwargs):
return quine.__doc__.format("'"+"'"+"'"+quine.__doc__+ "'"+"'"+"'")
Aug. 20, 2014
Comments: