File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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" )
You can’t perform that action at this time.
0 commit comments