diff --git a/stastionbase.py b/stastionbase.py deleted file mode 100755 index 02c96ca..0000000 --- a/stastionbase.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python3.10 - -class Drone: - def __init__(self, money): - self.money = money - - - - -while True: - repl = input(">> ") - - if repl == "s": - print("Show me the money") - elif repl == "q": - quit() - else: - print("Not a command, bitch") -