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
mkarray.py Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/python
file = open('prog.txt','r')
s = ""
for b in file.read():
s+="%d," % ord(b)
print(s[:-1])