cmd/lowercase.py

8 lines
108 B
Python
Raw Normal View History

2019-06-12 05:41:31 +00:00
import sys
from voussoirkit import pipeable
for line in pipeable.go():
pipeable.output(line.lower())