Adds basic CLI input and output functionality

Introduces a simple command-line interface to capture user input and display it back. Lays groundwork for future command processing and interaction.
This commit is contained in:
Vxrtrauter
2025-06-30 16:22:25 +02:00
parent 42eea1f371
commit 628e9ee2c4
6 changed files with 68 additions and 79 deletions
+15
View File
@@ -0,0 +1,15 @@
def asciititle():
print(f"""
_____ __ _ __ __
/ ____| / _| | | \/ |
| (___ ___ | |_| |___ ____ _ _ __ ___| \ / | __ _ _ __ __ _ __ _ ___ _ __
\___ \ / _ \| _| __\ \ /\ / / _` | '__/ _ \ |\/| |/ _` | '_ \ / _` |/ _` |/ _ \ '__|
____) | (_) | | | |_ \ V V / (_| | | | __/ | | | (_| | | | | (_| | (_| | __/ |
|_____/ \___/|_| \__| \_/\_/ \__,_|_| \___|_| |_|\__,_|_| |_|\__,_|\__, |\___|_|
__/ |
|___/
""")