mirror of
https://github.com/forth-ev/VolksForth.git
synced 2024-11-05 04:05:43 +00:00
533e73c29d
- 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
6 lines
81 B
Python
Executable File
6 lines
81 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import sys
|
|
|
|
print(' '.join(a.lower() for a in sys.argv[1:]))
|