8 lines
98 B
Python
8 lines
98 B
Python
from vector import Vector
|
|
|
|
|
|
def test_vector():
|
|
v = Vector.fromargs(1, 2)
|
|
print(v)
|
|
print(-v)
|