Add ampcode.py.
This commit is contained in:
parent
9e69b313b9
commit
41e86526a7
1 changed files with 7 additions and 0 deletions
7
ampcode.py
Normal file
7
ampcode.py
Normal 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)
|
Loading…
Reference in a new issue