mirror of https://github.com/xfarrow/lasd.git
8 lines
98 B
C++
8 lines
98 B
C++
|
#include"vector.hpp"
|
||
|
int main(){
|
||
|
Vector<int> v(5);
|
||
|
//v[1] = 3;
|
||
|
cout<<v<<endl;
|
||
|
return 0;
|
||
|
}
|