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:21:49 +02:00
parent 66f07ac421
commit 42eea1f371
2 changed files with 2 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
commandinput = input("Enter Command: ")
print(commandinput)
View File