Inteligentny_Wozek/packageList.py

8 lines
139 B
Python
Raw Normal View History

class listOfPackages:
list = []
def add(self, item):
self.list.append(item)
def remove(self):
self.list.pop()