GitHub Migration

This commit is contained in:
rarmknecht
2025-12-19 18:00:07 -06:00
commit 490594826b
5 changed files with 66 additions and 0 deletions

12
quine.py Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/python
d=[112,114,105,110,116,40,34,35,33,47,117,115,114,47,98,105,110,47,112,121,116,104,111,110,92,110,92,110,100,61,91,34,44,32,101,110,100,61,34,34,41,10,115,61,34,34,10,102,111,114,32,110,32,105,110,32,100,58,10,9,115,43,61,34,37,100,44,34,32,37,32,110,10,112,114,105,110,116,40,115,91,58,45,49,93,44,101,110,100,61,34,34,41,10,112,114,105,110,116,40,34,93,92,110,34,44,101,110,100,61,34,34,41,10,10,102,111,114,32,99,32,105,110,32,100,58,10,9,112,114,105,110,116,40,34,37,99,34,32,37,32,99,44,32,101,110,100,61,34,34,41,10]
print("#!/usr/bin/python\n\nd=[", end="")
s=""
for n in d:
s+="%d," % n
print(s[:-1],end="")
print("]\n",end="")
for c in d:
print("%c" % c, end="")