mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
628e9ee2c4
Introduces a simple command-line interface to capture user input and display it back. Lays groundwork for future command processing and interaction.
16 lines
738 B
Python
16 lines
738 B
Python
|
|
def asciititle():
|
|
print(f"""
|
|
|
|
_____ __ _ __ __
|
|
/ ____| / _| | | \/ |
|
|
| (___ ___ | |_| |___ ____ _ _ __ ___| \ / | __ _ _ __ __ _ __ _ ___ _ __
|
|
\___ \ / _ \| _| __\ \ /\ / / _` | '__/ _ \ |\/| |/ _` | '_ \ / _` |/ _` |/ _ \ '__|
|
|
____) | (_) | | | |_ \ V V / (_| | | | __/ | | | (_| | | | | (_| | (_| | __/ |
|
|
|_____/ \___/|_| \__| \_/\_/ \__,_|_| \___|_| |_|\__,_|_| |_|\__,_|\__, |\___|_|
|
|
__/ |
|
|
|___/
|
|
|
|
""")
|
|
|