-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpy OS dev version 0.1.2.py
More file actions
32 lines (26 loc) · 898 Bytes
/
py OS dev version 0.1.2.py
File metadata and controls
32 lines (26 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
print("Welcome to py OS dev version 0.1.2")
print("Made by Arnav Jaiswal")
print("Updated version of py OS dev version 0.1.1")
print("Updated on 19-6-2025")
while True:
command = input('pyos> ').strip().lower()
if command == "help":
print("commands --")
print("help")
print("about")
print("what's new")
print("exit")
elif command == "about":
print("py OS dev version 0.1.2")
print("Updated version of py OS dev version 0.1.1")
print("Made by Arnav Jaiswal on 19-6-2025")
print("Kernel version 1.0.1")
elif command == "what's new":
print("----------what's new---------")
print("New kernel version")
print("Infinite commands operable unless you had done exit")
elif command == "exit":
input('press enter to exit...')
break
else:
print("bad command")