Skip to content

Instantly share code, notes, and snippets.

@JosephTLyons
Created September 18, 2021 02:34
Show Gist options
  • Save JosephTLyons/289852b86e47a72229969813ab46e671 to your computer and use it in GitHub Desktop.
Save JosephTLyons/289852b86e47a72229969813ab46e671 to your computer and use it in GitHub Desktop.
Silly Twitter challenge of writing an application that prints its own source code
with open("./meta_print.py", "r") as file:
for line in file:
print(line, end="")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment