VolksForth/tools/echo-tolower.py

6 lines
81 B
Python
Executable File

#!/usr/bin/python3
import sys
print(' '.join(a.lower() for a in sys.argv[1:]))