VolksForth/tools/echo-tolower.py
Philip Zembrod 533e73c29d - enable run-in-dosbox.sh to include either .fb or .fth files
- add first test for including an .fth file
- add generic rules to convert lowercase .fb files to .fth files
- check in the tools/echo-toupper/tolower.py files that I left out earlier
2022-01-11 23:40:24 +01:00

6 lines
81 B
Python
Executable File

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