2022-10-30 08:09:23 -03:00
|
|
|
#!/bin/python3
|
2023-03-15 13:58:25 +01:00
|
|
|
# ruff: noqa
|
2022-10-30 08:09:23 -03:00
|
|
|
"""
|
|
|
|
Quine:
|
|
|
|
|
|
|
|
A quine is a computer program which takes no input and produces a copy of its
|
|
|
|
own source code as its only output (disregarding this docstring and the shebang).
|
|
|
|
|
|
|
|
More info on: https://en.wikipedia.org/wiki/Quine_(computing)
|
|
|
|
"""
|
2024-03-13 07:52:41 +01:00
|
|
|
|
2022-10-30 08:09:23 -03:00
|
|
|
print((lambda quine: quine % quine)("print((lambda quine: quine %% quine)(%r))"))
|