This repository was archived by the owner on Dec 3, 2019. It is now read-only.
This repository was archived by the owner on Dec 3, 2019. It is now read-only.
Bug in vector assignment #143
Open
Description
Something about the way vectors and vector elements are created and/or assigned leads to a bug when reassigning a vector to a variable name. In this example, testVec[1]
should be 0
at the end.
> testVec = v(0,0)
> testVec[1] += 1
> testVec
[ 1, 0 ]
> testVec = v(0,0)
> testVec
[ 0, 0 ]
> testVec[1]
1
Metadata
Metadata
Assignees
Labels
No labels