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

9
prog.txt Normal file
View File

@@ -0,0 +1,9 @@
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="")