Skip to content

Commit 85d6a69

Browse files
Add files via upload
1 parent e9384bc commit 85d6a69

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

py OS dev version 0.1.2.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
print("Welcome to py OS dev version 0.1.2")
2+
print("Made by Arnav Jaiswal")
3+
print("Updated version of py OS dev version 0.1.1")
4+
print("Updated on 19-6-2025")
5+
6+
while True:
7+
command = input('pyos> ').strip().lower()
8+
9+
if command == "help":
10+
print("commands --")
11+
print("help")
12+
print("about")
13+
print("what's new")
14+
print("exit")
15+
16+
elif command == "about":
17+
print("py OS dev version 0.1.2")
18+
print("Updated version of py OS dev version 0.1.1")
19+
print("Made by Arnav Jaiswal on 19-6-2025")
20+
print("Kernel version 1.0.1")
21+
22+
elif command == "what's new":
23+
print("----------what's new---------")
24+
print("New kernel version")
25+
print("Infinite commands operable unless you had done exit")
26+
27+
elif command == "exit":
28+
input('press enter to exit...')
29+
break
30+
31+
else:
32+
print("bad command")

0 commit comments

Comments
 (0)