Skip to content

Instantly share code, notes, and snippets.

View cWorksLLC's full-sized avatar
👋
welcome

c1919-Codes cWorksLLC

👋
welcome
View GitHub Profile
@cWorksLLC
cWorksLLC / snippet.py
Created December 7, 2024 14:01
snippet of source code from Lux OS
while True:
cmd = input(">")
if cmd == "help":
print("help - lists all the commands.")
print("time - tells the current time.")
elif cmd == "time":
print(time.strftime("%H:") + time.strftime("%M:") + time.strftime("%S "))
else:
print("there is no command named " + cmd + ".")
@cWorksLLC
cWorksLLC / firstgist.txt
Created November 25, 2024 06:49
First gist
first gist i have