This commit is contained in:
2019-04-01 16:02:59 +04:00
commit 36d7f037c3
48 changed files with 1933 additions and 0 deletions

7
tests/test_vector.py Normal file
View File

@@ -0,0 +1,7 @@
from vector import Vector
def test_vector():
v = Vector.fromargs(1, 2)
print(v)
print(-v)