Last active
May 13, 2017 14:08
-
-
Save chrisbay/10df28779479beba5da2b0a84db6ac81 to your computer and use it in GitHub Desktop.
A (cheating) quine in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with open(__file__) as f: | |
print(f.read()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment