Add ampcode.py.

This commit is contained in:
voussoir 2020-02-26 13:28:32 -08:00
parent 9e69b313b9
commit 41e86526a7

7
ampcode.py Normal file
View file

@ -0,0 +1,7 @@
import sys
from voussoirkit import pipeable
for line in pipeable.go():
line = ''.join('&#%d;' % ord(c) for c in line)
print(line)