LA_library/test.cc

9 lines
119 B
C++
Raw Normal View History

2005-02-01 00:08:03 +01:00
#include "vec.h"
int main(void)
{
NRVec<double> *p = new NRVec<double>[1000];
NRVec<double> q(10); q=1.;
p[500]|=q;
}