Hi, how can I implement a matrix (2-dim vector) A in Nim? Guess it should be vector of vectors, but could not find an example.
* Could overloading be used to implement matrix-vector multiplication A * b? * Could metaprogramming be used to implement element access A[i,j] instead of A[i][j]? Thx