forked from s474139/Inteligentny_Wozek
8 lines
139 B
Python
8 lines
139 B
Python
|
|
||
|
class listOfPackages:
|
||
|
list = []
|
||
|
|
||
|
def add(self, item):
|
||
|
self.list.append(item)
|
||
|
def remove(self):
|
||
|
self.list.pop()
|