10 lines
168 B
Python
10 lines
168 B
Python
#!/usr/bin/env python3
|
|
from vectors import Vector
|
|
|
|
v1 = Vector(1, 2, 3, )
|
|
v2 = Vector(4,0,1)
|
|
print(v1.get_values())
|
|
del v2
|
|
print("Jetzt wird v2 freigebe ")
|
|
|
|
#print(v2) |